Class: Fixman::Tester

Inherits:
Object
  • Object
show all
Defined in:
lib/fixman/tester.rb

Constant Summary collapse

TERMINAL_WIDTH =
80

Instance Method Summary collapse

Constructor Details

#initialize(configuration) ⇒ Tester

Returns a new instance of Tester.



8
9
10
11
# File 'lib/fixman/tester.rb', line 8

def initialize(configuration)
  @conf = configuration
  @target_cache = {}
end

Instance Method Details

#testObject



13
14
15
16
17
18
19
# File 'lib/fixman/tester.rb', line 13

def test
  @conf.raw_tasks.each do |raw_task|
    raw_task.refine.each do |task|
      puts(test_task task)
    end
  end
end