Sha256: 438c4da716b9f02e1e0302b63747f089ad2015c5275c1c9a6f22a54db0348c03

Contents?: true

Size: 1.06 KB

Versions: 2

Compression:

Stored size: 1.06 KB

Contents

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

class PadMiddlewareTest < Test::Unit::TestCase
  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

2 entries across 2 versions & 1 rubygems

Version Path
tracksperanto-2.8.6 test/middleware/test_pad_middleware.rb
tracksperanto-2.8.5 test/middleware/test_pad_middleware.rb