mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-12-18 03:25:31 -05:00
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
|