2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00
discourse/lib/autospec/base_runner.rb

23 lines
207 B
Ruby
Raw Normal View History

2013-10-24 10:06:05 +11:00
module Autospec
class BaseRunner
def run(args, specs)
end
def abort
end
def reload
end
def running?
true
end
def start
end
def stop
end
end
end