Sha256: aef05fbd5a07085eac788e70f907b2e495af8738e95dcd1d73885f0815255e25

Contents?: true

Size: 846 Bytes

Versions: 3

Compression:

Stored size: 846 Bytes

Contents

require File.expand_path(File.dirname(__FILE__)) + '/../helper'

class GoldenToolTest < Test::Unit::TestCase
  
  def test_action_description
    assert_equal "Reset residual of all the trackers to zero", Tracksperanto::Tool::Golden.action_description
  end
  
  def test_golden_bypasses_methods
    receiver = flexmock
    
    receiver.should_receive(:start_export).once.with(120,120)
    receiver.should_receive(:start_tracker_segment).once.with("Tracker")
    receiver.should_receive(:export_point).once.with(0, 100, 100, 0.0)
    receiver.should_receive(:end_tracker_segment).once
    receiver.should_receive(:end_export).once
    
    m = Tracksperanto::Tool::Golden.new(receiver)
    m.start_export(120, 120)
    m.start_tracker_segment("Tracker")
    m.export_point(0, 100, 100, 0.56)
    m.end_tracker_segment
    m.end_export
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
tracksperanto-4.1.2 test/tools/test_golden_middleware.rb
tracksperanto-4.1.0 test/tools/test_golden_middleware.rb
tracksperanto-4.0.0 test/tools/test_golden_middleware.rb