Class: Autospec::BaseRunner
- Inherits:
-
Object
- Object
- Autospec::BaseRunner
- Defined in:
- lib/autospec/base_runner.rb
Direct Known Subclasses
Instance Method Summary collapse
-
#abort ⇒ Object
used to abort the current run.
- #failed_specs ⇒ Object
-
#reload ⇒ Object
used when we need to reload the whole application.
-
#run(specs) ⇒ Object
launch a batch of specs/tests.
-
#running? ⇒ Boolean
indicates whether tests are running.
-
#start(opts = {}) ⇒ Object
used when starting the runner - preloading happens here.
-
#stop ⇒ Object
used to stop the runner.
Instance Method Details
#abort ⇒ Object
used to abort the current run
23 24 |
# File 'lib/autospec/base_runner.rb', line 23 def abort end |
#failed_specs ⇒ Object
26 27 28 |
# File 'lib/autospec/base_runner.rb', line 26 def failed_specs [] end |
#reload ⇒ Object
used when we need to reload the whole application
19 20 |
# File 'lib/autospec/base_runner.rb', line 19 def reload end |
#run(specs) ⇒ Object
launch a batch of specs/tests
15 16 |
# File 'lib/autospec/base_runner.rb', line 15 def run(specs) end |
#running? ⇒ Boolean
indicates whether tests are running
10 11 12 |
# File 'lib/autospec/base_runner.rb', line 10 def running? true end |
#start(opts = {}) ⇒ Object
used when starting the runner - preloading happens here
6 7 |
# File 'lib/autospec/base_runner.rb', line 6 def start(opts = {}) end |
#stop ⇒ Object
used to stop the runner
31 32 |
# File 'lib/autospec/base_runner.rb', line 31 def stop end |