mirror of
https://github.com/discourse/discourse.git
synced 2025-02-12 09:50:45 +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
|