Sha256: d17bb9dd191712ce4d7c621079fb57814be7dd00b3543644cdaf2c9c34a661a4

Contents?: true

Size: 689 Bytes

Versions: 2

Compression:

Stored size: 689 Bytes

Contents

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

class MuxTest < Test::Unit::TestCase
  
  def test_mux_replays
    outs = (0..25).map do
      o = flexmock
      o.should_receive(:start_export).once.with(720, 576)
      o.should_receive(:start_tracker_segment).once.with("FooT")
      o.should_receive(:export_point).once.with(0, 45.0, 67.0, 0.3)
      o.should_receive(:end_tracker_segment).once
      o.should_receive(:end_export).once
      o
    end
    
    mux = Tracksperanto::Export::Mux.new(outs)
    mux.start_export(720, 576)
    mux.start_tracker_segment("FooT")
    mux.export_point(0, 45.0, 67.0, 0.3)
    mux.end_tracker_segment
    mux.end_export
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
tracksperanto-2.1.0 test/export/test_mux.rb
tracksperanto-2.0.2 test/export/test_mux.rb