Sha256: d2179ebab104451a0d44ea25e338f74fd09f1cf45ff258fe827fa57e46dd8d9d

Contents?: true

Size: 1.53 KB

Versions: 4

Compression:

Stored size: 1.53 KB

Contents

require 'test_helper'

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

  context "a new PathsParam" do

    setup do
      @path1 = File.join(fixtures, 'executable', 'paths', 'folder1')
      @path2 = File.join(fixtures, 'executable', 'paths', 'folder2')
      @path3 = File.join(fixtures, 'executable', 'paths', 'folder3')

      @param = Sprout::Executable::Paths.new
      @param.belongs_to = FakeExecutableTask.new
      @param.name = 'paths'
    end

    should "accept a collection of paths" do
      @param.value << @path1
      @param.value << @path2
      @param.value << @path3

      as_each_system do |sys|
        assert_equal "-paths+=#{sys.clean_path(@path1)} -paths+=#{sys.clean_path(@path2)} -paths+=#{sys.clean_path(@path3)}", @param.to_shell
      end

      # All child files have been added as prerequisites:
      assert_equal 6, @param.belongs_to.prerequisites.size
    end

    should "accept a custom file expression" do
      @param.file_expression = "file2"
      @param.value << @path1

      as_each_system do |sys|
        assert_equal "-paths+=#{sys.clean_path(@path1)}", @param.to_shell
      end

      # 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

Version Path
sprout-1.0.35.pre test/unit/paths_param_test.rb
sprout-1.0.32.pre test/unit/paths_param_test.rb
sprout-1.0.31.pre test/unit/paths_param_test.rb
sprout-1.0.29.pre test/unit/paths_param_test.rb