Class: Spork::RunStrategy
- Inherits:
-
Object
- Object
- Spork::RunStrategy
show all
- Defined in:
- lib/spork/run_strategy.rb
Defined Under Namespace
Classes: Forking, Magazine
Constant Summary
- @@run_strategies =
[]
Instance Attribute Summary (collapse)
Instance Method Summary
(collapse)
Constructor Details
- (RunStrategy) initialize(test_framework)
A new instance of RunStrategy
5
6
7
|
# File 'lib/spork/run_strategy.rb', line 5
def initialize(test_framework)
@test_framework = test_framework
end
|
Instance Attribute Details
- (Object) test_framework
Returns the value of attribute test_framework
2
3
4
|
# File 'lib/spork/run_strategy.rb', line 2
def test_framework
@test_framework
end
|
Instance Method Details
- (Object) abort
29
30
31
|
# File 'lib/spork/run_strategy.rb', line 29
def abort
raise NotImplementedError
end
|
- (Object) assert_ready!
25
26
27
|
# File 'lib/spork/run_strategy.rb', line 25
def assert_ready!
raise NotImplementedError
end
|
- (Object) cleanup
17
18
19
|
# File 'lib/spork/run_strategy.rb', line 17
def cleanup
raise NotImplementedError
end
|
- (Object) preload
9
10
11
|
# File 'lib/spork/run_strategy.rb', line 9
def preload
raise NotImplementedError
end
|
- (Object) run(argv, input, output)
13
14
15
|
# File 'lib/spork/run_strategy.rb', line 13
def run(argv, input, output)
raise NotImplementedError
end
|
- (Boolean) running?
21
22
23
|
# File 'lib/spork/run_strategy.rb', line 21
def running?
raise NotImplementedError
end
|