Sha256: b49648a4bbbe76736f70a8263a0312b9446c5b454dc22704d040ac9b62e03fd1

Contents?: true

Size: 661 Bytes

Versions: 3

Compression:

Stored size: 661 Bytes

Contents

require 'assert'
require 'fileutils'
require 'pathname'

require 'cap-util/shared_path'

module CapUtil

  class SharedPathTests < Assert::Context
    desc "the SharedPath util"
    setup do
      @fake_cap = FakeCap.new
      @fake_cap.shared_path = Pathname.new File.expand_path("tmp/shared")

      @shared_path = SharedPath.new(@fake_cap)
    end
    subject { @shared_path }

    should have_imeths :rm_rf

    should "remove a given relative path with the `rm_rf` method" do
      subject.rm_rf 'cached-copy'
      exp_cmd = "rm -rf #{File.expand_path("tmp/shared/cached-copy")}"

      assert_equal [exp_cmd], @fake_cap.cmds_run.last
    end

  end

end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
cap-util-1.0.0 test/shared_path_tests.rb
cap-util-1.0.0.rc1 test/shared_path_tests.rb
cap-util-0.4.0 test/shared_path_tests.rb