aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cask/test
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Homebrew/cask/test')
-rw-r--r--Library/Homebrew/cask/test/cask/staged_test.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/Library/Homebrew/cask/test/cask/staged_test.rb b/Library/Homebrew/cask/test/cask/staged_test.rb
deleted file mode 100644
index 2b601a6ae..000000000
--- a/Library/Homebrew/cask/test/cask/staged_test.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-require "test_helper"
-
-# TODO: this test should be named after the corresponding class, once
-# that class is abstracted from installer.rb. It makes little sense
-# to be invoking bundle_identifier off of the installer instance.
-describe "Operations on staged Casks" do
- describe "bundle ID" do
- it "fetches the bundle ID from a staged cask" do
- transmission_cask = Hbc::CaskLoader.load_from_file(TEST_FIXTURE_DIR/"cask/Casks/local-transmission.rb")
- tr_installer = Hbc::Installer.new(transmission_cask)
-
- shutup do
- tr_installer.install
- end
- tr_installer.bundle_identifier.must_equal("org.m0k.transmission")
- end
- end
-end