Parent

Spork::RunStrategy

Attributes

test_framework[R]

Public Class Methods

new(test_framework) click to toggle source
   # File lib/spork/run_strategy.rb, line 5
5:   def initialize(test_framework)
6:     @test_framework = test_framework
7:   end

Protected Class Methods

factory(test_framework) click to toggle source
    # File lib/spork/run_strategy.rb, line 30
30:     def self.factory(test_framework)
31:       if RUBY_PLATFORM =~ /mswin|mingw/
32:         Spork::RunStrategy::Magazine.new(test_framework)
33:       else
34:         Spork::RunStrategy::Forking.new(test_framework)
35:       end
36:     end
inherited(subclass) click to toggle source
    # File lib/spork/run_strategy.rb, line 38
38:     def self.inherited(subclass)
39:       @@run_strategies << subclass
40:     end

Public Instance Methods

abort() click to toggle source
    # File lib/spork/run_strategy.rb, line 25
25:   def abort
26:     raise NotImplementedError
27:   end
cleanup() click to toggle source
    # File lib/spork/run_strategy.rb, line 17
17:   def cleanup
18:     raise NotImplementedError
19:   end
preload() click to toggle source
    # File lib/spork/run_strategy.rb, line 9
 9:   def preload
10:     raise NotImplementedError
11:   end
run(argv, input, output) click to toggle source
    # File lib/spork/run_strategy.rb, line 13
13:   def run(argv, input, output)
14:     raise NotImplementedError
15:   end
running?() click to toggle source
    # File lib/spork/run_strategy.rb, line 21
21:   def running?
22:     raise NotImplementedError
23:   end

Disabled; run with --debug to generate this.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.