mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-27 17:46:05 -05:00
22 lines
207 B
Ruby
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
|