Sha256: cac8944f863ba23fd1c9e7594fa0fa79e02b9efbf29b40d2b3c32ec880ed1e94
Contents?: true
Size: 1.06 KB
Versions: 10
Compression:
Stored size: 1.06 KB
Contents
# -*- encoding : utf-8 -*- require File.expand_path(File.dirname(__FILE__)) + '/../helper' class ShiftMiddlewareTest < Test::Unit::TestCase def test_action_description assert_equal "Move all the trackers by a specified number of pixels", Tracksperanto::Middleware::Shift.action_description end def test_shift_supports_hash_init receiver = flexmock m = Tracksperanto::Middleware::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::Middleware::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
10 entries across 10 versions & 1 rubygems