Sha256: 293a44d7769df320dd120663d65f0c7ace1cc26ae7af69ff96c9cdb7b087b12a

Contents?: true

Size: 1.03 KB

Versions: 3

Compression:

Stored size: 1.03 KB

Contents

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

class LerpToolTest < Test::Unit::TestCase
  
  def test_action_description
    assert_equal "Interpolate missing keyframes of all the trackers", Tracksperanto::Tool::Lerp.action_description
  end
  
  def test_lerp
    receiver = flexmock
    m = Tracksperanto::Tool::Lerp.new(receiver)
    receiver.should_receive(:start_export).with(720, 576).once
    receiver.should_receive(:start_tracker_segment).with("Foo").once
    receiver.should_receive(:export_point).with(1, 1.0, 2.0, 0).once
    receiver.should_receive(:export_point).with(2, 2.0, 3.0, 0).once
    receiver.should_receive(:export_point).with(3, 3.0, 4.0, 0).once
    receiver.should_receive(:export_point).with(4, 4.0, 5.0, 0).once
    receiver.should_receive(:end_tracker_segment).once
    receiver.should_receive(:end_export).once
    
    m.start_export(720, 576)
    m.start_tracker_segment("Foo")
    m.export_point(1, 1.0, 2.0, 0)
    m.export_point(4, 4.0, 5.0, 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_lerp_middleware.rb
tracksperanto-4.1.0 test/tools/test_lerp_middleware.rb
tracksperanto-4.0.0 test/tools/test_lerp_middleware.rb