23 lines
207 B
Ruby
23 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
|