mirror of
https://github.com/discourse/discourse.git
synced 2024-11-27 18:23:37 +08: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
|