From 3db8cdf8613694a26051e0ee291f931a7ca00ae3 Mon Sep 17 00:00:00 2001 From: Markus Reiter <me@reitermark.us> Date: Wed, 8 Feb 2017 14:28:18 +0100 Subject: [PATCH] Convert NestedContainer test to spec. --- .../cask/artifact/nested_container_spec.rb} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename Library/Homebrew/cask/{test/cask/artifact/nested_container_test.rb => spec/cask/artifact/nested_container_spec.rb} (70%) diff --git a/Library/Homebrew/cask/test/cask/artifact/nested_container_test.rb b/Library/Homebrew/cask/spec/cask/artifact/nested_container_spec.rb similarity index 70% rename from Library/Homebrew/cask/test/cask/artifact/nested_container_test.rb rename to Library/Homebrew/cask/spec/cask/artifact/nested_container_spec.rb index 4d7ceaaa04..31a1cb5eb6 100644 --- a/Library/Homebrew/cask/test/cask/artifact/nested_container_test.rb +++ b/Library/Homebrew/cask/spec/cask/artifact/nested_container_spec.rb @@ -1,17 +1,17 @@ -require "test_helper" +require "spec_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) + InstallHelper.install_without_artifacts(c) end shutup do Hbc::Artifact::NestedContainer.new(cask).install_phase end - cask.staged_path.join("MyNestedApp.app").must_be :directory? + expect(cask.staged_path.join("MyNestedApp.app")).to be_a_directory end end end -- GitLab