13 lines
404 B
Ruby
13 lines
404 B
Ruby
![]() |
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
|