blob: f42072956b7ed530369686e91425f44747d6f747 (
plain)
1
2
3
4
5
6
7
|
describe "brew commands", :integration_test do
it "prints a list of all available commands" do
expect { brew "commands" }
.to output(/Built-in commands/).to_stdout
.and be_a_success
end
end
|