aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/cask/cli_spec.rb
diff options
context:
space:
mode:
authorMarkus Reiter2017-03-08 02:43:22 +0100
committerGitHub2017-03-08 02:43:22 +0100
commitfe694f6db9190239fd4a84f1208d218aa02c0474 (patch)
tree6c5bd9d72442a6dd2eb5214c50570f29dbf330f4 /Library/Homebrew/test/cask/cli_spec.rb
parent9a4538a3254297f7830afe16ea5a78fb3a9c0146 (diff)
parent3b8524d770172ec4aacb48fceb4dc8d2c1836bce (diff)
downloadbrew-fe694f6db9190239fd4a84f1208d218aa02c0474.tar.bz2
Merge pull request #2284 from reitermarkus/cask-refactor-cli
Refactor CLI options.
Diffstat (limited to 'Library/Homebrew/test/cask/cli_spec.rb')
-rw-r--r--Library/Homebrew/test/cask/cli_spec.rb11
1 files changed, 7 insertions, 4 deletions
diff --git a/Library/Homebrew/test/cask/cli_spec.rb b/Library/Homebrew/test/cask/cli_spec.rb
index 1ad6790a3..0a4559ff2 100644
--- a/Library/Homebrew/test/cask/cli_spec.rb
+++ b/Library/Homebrew/test/cask/cli_spec.rb
@@ -32,10 +32,13 @@ describe Hbc::CLI, :cask do
end
it "prints help output when subcommand receives `--help` flag" do
- expect(described_class).to receive(:run_command).with("help")
- described_class.process(%w[noop --help])
- expect(Hbc.help).to eq(true)
- Hbc.help = false
+ begin
+ expect(described_class).to receive(:run_command).with("help")
+ described_class.process(%w[noop --help])
+ expect(Hbc::CLI.help?).to eq(true)
+ ensure
+ Hbc::CLI.help = false
+ end
end
it "respects the env variable when choosing what appdir to create" do