aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/cmd
diff options
context:
space:
mode:
authorMarkus Reiter2017-02-24 18:09:54 +0100
committerGitHub2017-02-24 18:09:54 +0100
commit7a0fa34a80ce2fb30154d1ae2d0e9a56eda201c4 (patch)
tree602bb9f25026852165932a09616deb569eff9c48 /Library/Homebrew/test/cmd
parent9a47205b0eb7b016989259de9238223854eed2ed (diff)
parentbe2645b04f3b001069daf353289a19155afaf00c (diff)
downloadbrew-7a0fa34a80ce2fb30154d1ae2d0e9a56eda201c4.tar.bz2
Merge pull request #2132 from reitermarkus/spec-options
Convert `brew options` test to spec.
Diffstat (limited to 'Library/Homebrew/test/cmd')
-rw-r--r--Library/Homebrew/test/cmd/options_spec.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Homebrew/test/cmd/options_spec.rb b/Library/Homebrew/test/cmd/options_spec.rb
new file mode 100644
index 000000000..33fe8b107
--- /dev/null
+++ b/Library/Homebrew/test/cmd/options_spec.rb
@@ -0,0 +1,12 @@
+describe "brew options", :integration_test do
+ it "prints a given Formula's options" do
+ setup_test_formula "testball", <<-EOS.undent
+ depends_on "bar" => :recommended
+ EOS
+
+ expect { brew "options", "testball" }
+ .to output("--with-foo\n\tBuild with foo\n--without-bar\n\tBuild without bar support\n\n").to_stdout
+ .and not_to_output.to_stderr
+ .and be_a_success
+ end
+end