Sha256: 8002c7bb799c990a22fd8ff8f36630d666df8b6d5a21c31197e290e25202793f
Contents?: true
Size: 1.25 KB
Versions: 10
Compression:
Stored size: 1.25 KB
Contents
# -*- encoding : utf-8 -*- require File.expand_path(File.dirname(__FILE__)) + '/../helper' class PadMiddlewareTest < Test::Unit::TestCase def test_action_description assert_equal "Pad or crop the image by a fraction of it's original size", Tracksperanto::Middleware::Pad.action_description end def test_shift_supports_hash_init receiver = flexmock m = Tracksperanto::Middleware::Pad.new(receiver, :left_pad => 0.5, :right_pad => 0, :top_pad => -0.2) assert_in_delta 0.5, m.left_pad, 0.001 assert_in_delta 0.0, m.bottom_pad, 0.001 end def test_shift_bypasses_methods receiver = flexmock padded_w, padded_h = (720 * 0.75).ceil, (576 * 1.1).ceil receiver.should_receive(:start_export).once.with(padded_w, padded_h) receiver.should_receive(:start_tracker_segment).once.with("Tracker") receiver.should_receive(:export_point).once.with(1, 240.0, -27.6, 0) receiver.should_receive(:end_tracker_segment).once receiver.should_receive(:end_export).once m = Tracksperanto::Middleware::Pad.new(receiver, :left_pad => -0.25, :bottom_pad => 0.10) m.start_export(720, 576) 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