Class: LearnTest::Runner

Inherits:
Object
  • Object
show all
Defined in:
lib/learn_test/runner.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(repo, options = {}) ⇒ Runner

Returns a new instance of Runner.



9
10
11
12
# File 'lib/learn_test/runner.rb', line 9

def initialize(repo, options = {})
  @repo = repo
  @options = options
end

Instance Attribute Details

#optionsObject (readonly)

Returns the value of attribute options.



7
8
9
# File 'lib/learn_test/runner.rb', line 7

def options
  @options
end

#repoObject (readonly)

Returns the value of attribute repo.



7
8
9
# File 'lib/learn_test/runner.rb', line 7

def repo
  @repo
end

Instance Method Details

#filesObject



27
28
29
# File 'lib/learn_test/runner.rb', line 27

def files
  @files ||= Dir.entries('.')
end

#keep_results?Boolean

Returns:

  • (Boolean)


31
32
33
# File 'lib/learn_test/runner.rb', line 31

def keep_results?
  @keep_results ||= options[:keep] || !!options.delete('--keep')
end

#runObject



14
15
16
17
18
19
20
21
22
23
24
25
# File 'lib/learn_test/runner.rb', line 14

def run
  strategy.check_dependencies
  strategy.configure
  strategy.run
  if options[:debug] || options[:sync]
    report_and_clean
  else
    Process.detach(Process.fork do
      report_and_clean
    end)
  end
end

#strategyObject



35
36
37
38
39
40
41
# File 'lib/learn_test/runner.rb', line 35

def strategy
  return @strategy if @strategy

  detected = strategies.map { |s| s.new(self) }.detect(&:detect)

  @strategy = detected || LearnTest::Strategies::None.new(self)
end