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
2013-10-24 12:08:03 +11:00

22 lines
207 B
Ruby

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