Sha256: 7d74e8ce37a21a0067535dd7e90fbf6b39983f7dc5285e1e077da8284cdc76ae

Contents?: true

Size: 1.01 KB

Versions: 3

Compression:

Stored size: 1.01 KB

Contents

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

class ShiftToolTest < Test::Unit::TestCase
  
  def test_action_description
    assert_equal "Move all the trackers by a specified number of pixels", Tracksperanto::Tool::Shift.action_description
  end
  
  def test_shift_supports_hash_init
    receiver = flexmock
    m = Tracksperanto::Tool::Shift.new(receiver, :x_shift => 1.2)
    assert_equal 1.2, m.x_shift
  end
  
  def test_shift_bypasses_methods
    receiver = flexmock
    receiver.should_receive(:start_export).once.with(50, 60)
    receiver.should_receive(:start_tracker_segment).once.with("Tracker")
    receiver.should_receive(:export_point).once.with(1, 123, 95, 0)
    receiver.should_receive(:end_tracker_segment).once
    receiver.should_receive(:end_export).once
    
    m = Tracksperanto::Tool::Shift.new(receiver, :x_shift => 63, :y_shift => 65)
    m.start_export(50, 60)
    m.start_tracker_segment("Tracker")
    m.export_point(1, 60, 30, 0)
    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_shift_middleware.rb
tracksperanto-4.1.0 test/tools/test_shift_middleware.rb
tracksperanto-4.0.0 test/tools/test_shift_middleware.rb