test/unit/file_target_test.rb in sprout-1.0.26.pre vs test/unit/file_target_test.rb in sprout-1.0.29.pre
- old
+ new
@@ -1,6 +1,6 @@
-require File.dirname(__FILE__) + '/test_helper'
+require 'test_helper'
class FileTargetTest < Test::Unit::TestCase
include SproutTestCase
context "a file target" do
@@ -9,19 +9,23 @@
end
context "that is created with a constructor block" do
should "have the provided values" do
target = Sprout::FileTarget.new do |t|
+ t.pkg_name = 'asunit4'
+ t.pkg_version = '4.2.2.pre'
t.add_library :swc, @asunit_swc
end
assert_provided_values target
end
end
context "that is created with no constructor block" do
should "have the provided values" do
target = Sprout::FileTarget.new
+ target.pkg_name = 'asunit4'
+ target.pkg_version = '4.2.2.pre'
target.add_library :swc, @asunit_swc
assert_provided_values target
end
end
@@ -34,9 +38,10 @@
assert_equal 0, t.executables.size
assert_equal 1, t.libraries.size
library = t.libraries.first
assert_equal :swc, library.name
assert_equal File.join('.', @asunit_swc), library.path
+ assert_equal '[FileTarget pkg_name=asunit4 pkg_version=4.2.2.pre platform=universal]', t.to_s
end
end