aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/cmd/options_spec.rb
blob: bb6b98a47c39a93cb0fc4d032b65c81cc220133e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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