Sha256: 2d707c1439bce873bcfd1474a3bd0c1d66a2cc4e4ec9fbfe13e9b4df87e9a3a1

Contents?: true

Size: 1.14 KB

Versions: 1

Compression:

Stored size: 1.14 KB

Contents

require File.join(File.dirname(__FILE__), 'test_helper')

class MXMLCTest < Test::Unit::TestCase
  include SproutTestCase

  context "An MXMLC tool" do

    setup do
      @fixture         = File.join 'test', 'fixtures', 'mxmlc', 'simple'
      @input           = File.join @fixture, 'SomeFile.as'
      @expected_output = File.join @fixture, 'SomeFile.swf'
      #Sprout::Log.debug = false
    end

    teardown do
      remove_file @expected_output
    end

    should "accept input" do
      mxmlc = AS3::MXMLC.new
      mxmlc.input = @input
      mxmlc.source_path << @fixture
      assert_equal '--source-path+=test/fixtures/mxmlc/simple test/fixtures/mxmlc/simple/SomeFile.as', mxmlc.to_shell
    end

    should "compile a swf" do
      mxmlc = AS3::MXMLC.new
      mxmlc.input = @input
      # Turn on to trigger an actual compilation:
      # (This is too damn slow to leave in the every-time test run)
      mxmlc.execute
      assert_file @expected_output
    end

    should "assign simple output" do
      t = mxmlc 'bin/SomeProject.swf' do |t|
        t.input = @input
      end
      assert_equal 'bin/SomeProject.swf', t.output
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
as3-1.0.0.pre test/unit/mxmlc_test.rb