Sha256: 89761bd352323066b3eaf5f24fb57751462d64fec417bb9aaecc6d9c86a5a74d
Contents?: true
Size: 1.14 KB
Versions: 4
Compression:
Stored size: 1.14 KB
Contents
require 'test_helper' class PathParamTest < Test::Unit::TestCase include SproutTestCase context "a new PathParam" do setup do @path1 = File.join(fixtures, 'executable', 'paths', 'folder1') @param = Sprout::Executable::Path.new @param.belongs_to = FakeExecutableTask.new @param.name = 'path' end should "accept a collection of paths" do @param.value = @path1 assert_equal "-path=#{@path1}", @param.to_shell # All child files have been added as prerequisites: assert_equal 3, @param.belongs_to.prerequisites.size end should "accept a custom file expression" do @param.file_expression = "file2" @param.value = @path1 assert_equal "-path=#{@path1}", @param.to_shell # All child files have been added as prerequisites: assert_equal 1, @param.belongs_to.prerequisites.size end should "accept hidden_name parameter" do @param.hidden_name = true @param.value = @path1 assert_equal @path1, @param.to_shell # All child files have been added as prerequisites: assert_equal 3, @param.belongs_to.prerequisites.size end end end
Version data entries
4 entries across 4 versions & 1 rubygems