test/unit/mxmlc_test.rb in flashsdk-1.0.29.pre vs test/unit/mxmlc_test.rb in flashsdk-1.0.33.pre
- old
+ new
@@ -32,18 +32,17 @@
should "accept input" do
as_a_unix_system do
mxmlc = FlashSDK::MXMLC.new
mxmlc.input = 'test/fixtures/mxmlc/simple/SomeFile.as'
mxmlc.source_path << 'test/fixtures/mxmlc/simple'
- assert_equal '-source-path+=test/fixtures/mxmlc/simple -static-link-runtime-shared-libraries test/fixtures/mxmlc/simple/SomeFile.as', mxmlc.to_shell
+ assert_equal '-source-path+=test/fixtures/mxmlc/simple test/fixtures/mxmlc/simple/SomeFile.as', mxmlc.to_shell
end
end
should "assign default-size" do
mxmlc = FlashSDK::MXMLC.new
mxmlc.default_size = '800,500'
- mxmlc.static_link_runtime_shared_libraries = false
assert_equal '-default-size=800,500', mxmlc.to_shell
end
should "assign simple output" do
t = mxmlc 'bin/SomeProject.swf' do |t|
@@ -59,9 +58,8 @@
mxmlc.expects(:execute_with_fcsh)
mxmlc.input = @input
mxmlc.use_fcsh = true
mxmlc.execute
end
-
end
end