brew/Library/Homebrew/test/cmd/options_spec.rb
2017-10-18 14:39:09 +02:00

13 lines
397 B
Ruby

describe "brew options", :integration_test do
it "prints a given Formula's options" do
setup_test_formula "testball", <<~EOS
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