aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/cask/cli
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Homebrew/test/cask/cli')
-rw-r--r--Library/Homebrew/test/cask/cli/internal_stanza_spec.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/Library/Homebrew/test/cask/cli/internal_stanza_spec.rb b/Library/Homebrew/test/cask/cli/internal_stanza_spec.rb
index 52bbf4ee0..a020b33d4 100644
--- a/Library/Homebrew/test/cask/cli/internal_stanza_spec.rb
+++ b/Library/Homebrew/test/cask/cli/internal_stanza_spec.rb
@@ -6,10 +6,10 @@ describe Hbc::CLI::InternalStanza, :cask do
}.to output("http://example.com/gpg-signature.asc\n").to_stdout
end
- it "raises an exception when stanza is invalid" do
+ it "raises an exception when stanza is unknown/unsupported" do
expect {
- described_class.new("invalid_stanza", "with-gpg")
- }.to raise_error(/Illegal stanza/)
+ described_class.new("this_stanza_does_not_exist", "with-gpg")
+ }.to raise_error(/Unknown\/unsupported stanza/)
end
it "raises an exception when normal stanza is not present on cask" do
@@ -37,6 +37,6 @@ describe Hbc::CLI::InternalStanza, :cask do
command = described_class.new("artifacts", "with-gpg")
expect {
command.run
- }.to output("{:app=>[[\"Caffeine.app\"]]}\n").to_stdout
+ }.to output(/Caffeine\.app/).to_stdout
end
end