Sha256: aa127842f3a66c2a3410d5e3b925935f0d24a2acdb464479e0a74053a5aceadb
Contents?: true
Size: 929 Bytes
Versions: 1
Compression:
Stored size: 929 Bytes
Contents
# -*- encoding : utf-8 -*- require File.expand_path(File.dirname(__FILE__)) + '/../helper' class EqualizerImportTest < Test::Unit::TestCase DELTA = 0.001 def test_introspects_properly i = Tracksperanto::Import::Equalizer4 assert_equal "3DE v4 point export file", i.human_name assert !i.autodetects_size? end def test_parsing_from_importable fixture = File.open(File.dirname(__FILE__) + '/samples/3de_v4/3de_export_cube.txt') parser = Tracksperanto::Import::Equalizer4.new(:io => fixture, :width => 1024, :height => 512) trackers = parser.to_a assert_equal 8, trackers.length first_t = trackers[0] assert_equal "01", first_t.name assert_equal 61, first_t.length first_kf = first_t[0] assert_in_delta 407.384758225105315, first_kf.abs_x, DELTA assert_in_delta 232.449011732690479, first_kf.abs_y, DELTA assert_equal 39, first_kf.frame end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tracksperanto-2.9.0 | test/import/test_3de_import.rb |