aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cask/test
diff options
context:
space:
mode:
authorMarkus Reiter2017-02-08 14:28:18 +0100
committerMarkus Reiter2017-02-10 17:19:19 +0100
commit3db8cdf8613694a26051e0ee291f931a7ca00ae3 (patch)
treee87bd292a9229d33758afd212ddd3f9b7ea9a7a3 /Library/Homebrew/cask/test
parent24d50599410dacbb36decfc957a5933e19d6a205 (diff)
downloadbrew-3db8cdf8613694a26051e0ee291f931a7ca00ae3.tar.bz2
Convert NestedContainer test to spec.
Diffstat (limited to 'Library/Homebrew/cask/test')
-rw-r--r--Library/Homebrew/cask/test/cask/artifact/nested_container_test.rb17
1 files changed, 0 insertions, 17 deletions
diff --git a/Library/Homebrew/cask/test/cask/artifact/nested_container_test.rb b/Library/Homebrew/cask/test/cask/artifact/nested_container_test.rb
deleted file mode 100644
index 4d7ceaaa0..000000000
--- a/Library/Homebrew/cask/test/cask/artifact/nested_container_test.rb
+++ /dev/null
@@ -1,17 +0,0 @@
-require "test_helper"
-
-describe Hbc::Artifact::NestedContainer do
- describe "install" do
- it "extracts the specified paths as containers" do
- cask = Hbc::CaskLoader.load_from_file(TEST_FIXTURE_DIR/"cask/Casks/nested-app.rb").tap do |c|
- TestHelper.install_without_artifacts(c)
- end
-
- shutup do
- Hbc::Artifact::NestedContainer.new(cask).install_phase
- end
-
- cask.staged_path.join("MyNestedApp.app").must_be :directory?
- end
- end
-end