blob: 2ce0825e8df2daa66082d16d606d06307cedd84a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
describe "brew outdated", :integration_test do
it "prints outdated Formulae" do
setup_test_formula "testball"
(HOMEBREW_CELLAR/"testball/0.0.1/foo").mkpath
expect { brew "outdated" }
.to output("testball\n").to_stdout
.and not_to_output.to_stderr
.and be_a_success
end
end
|