discourse/lib/autospec/base_runner.rb

23 lines
207 B
Ruby
Raw Normal View History

2013-10-23 19:06:05 -04: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