mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
12 lines
308 B
Ruby
12 lines
308 B
Ruby
![]() |
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
|