Sha256: 6ef78430e113b6b61a7c5250c1de018d8f1d5a79dc65bf31677aeb794c220d92

Contents?: true

Size: 1.25 KB

Versions: 23

Compression:

Stored size: 1.25 KB

Contents

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

class NukeExportTest < Test::Unit::TestCase
  include ParabolicTracks
  TEST_FILE = File.dirname(__FILE__) + "/samples/ref_NukeScript.nk"
  PREAMBLE = 'version 5.1200
Root {
 inputs 0
 frame 1
 last_frame 1
}
Constant {
 inputs 0
 channels rgb
 format "1080 720 0 0 1080 720 1"
 name CompSize_1080x720
 postage_stamp false
 xpos 0
 ypos -60
}'
  def test_export_output_written
    ensure_same_output Tracksperanto::Export::NukeScript, TEST_FILE
  end
  
  def test_exporter_meta
    assert_equal "nuke.nk", Tracksperanto::Export::NukeScript.desc_and_extension
    assert_equal "Nuke .nk script", Tracksperanto::Export::NukeScript.human_name
  end
  
  def test_tuples_to_curves
    tuples = [[6, 234, 145], [8, 144, 223], [9, 231, 189], [10, 232, 190]]
    x = Tracksperanto::Export::NukeScript.new(StringIO.new)
    curves = x.send(:curves_from_tuples, tuples)
    assert_equal "{curve i x6 234.0000 x8 144.0000 x9 231.0000 232.0000} {curve i x6 145.0000 x8 223.0000 x9 189.0000 190.0000}", curves
  end
  
  def test_compsize_not_overridden
    o = StringIO.new
    x = Tracksperanto::Export::NukeScript.new(o)
    x.start_export(1080, 720)
    x.end_export
    assert_equal PREAMBLE, o.string.strip 
  end
  
end

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
tracksperanto-2.8.6 test/export/test_nuke_export.rb
tracksperanto-2.8.5 test/export/test_nuke_export.rb
tracksperanto-2.8.4 test/export/test_nuke_export.rb
tracksperanto-2.8.2 test/export/test_nuke_export.rb
tracksperanto-2.8.1 test/export/test_nuke_export.rb
tracksperanto-2.8.0 test/export/test_nuke_export.rb
tracksperanto-2.7.0 test/export/test_nuke_export.rb
tracksperanto-2.6.3 test/export/test_nuke_export.rb
tracksperanto-2.6.2 test/export/test_nuke_export.rb
tracksperanto-2.6.1 test/export/test_nuke_export.rb
tracksperanto-2.6.0 test/export/test_nuke_export.rb
tracksperanto-2.5.0 test/export/test_nuke_export.rb
tracksperanto-2.4.1 test/export/test_nuke_export.rb
tracksperanto-2.3.3 test/export/test_nuke_export.rb
tracksperanto-2.3.2 test/export/test_nuke_export.rb
tracksperanto-2.3.1 test/export/test_nuke_export.rb
tracksperanto-2.3.0 test/export/test_nuke_export.rb
tracksperanto-2.2.4 test/export/test_nuke_export.rb
tracksperanto-2.2.2 test/export/test_nuke_export.rb
tracksperanto-2.2.0 test/export/test_nuke_export.rb