mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
12 lines
279 B
Ruby
12 lines
279 B
Ruby
require "helper/integration_command_test_case"
|
|
|
|
class IntegrationCommandTestMissing < IntegrationCommandTestCase
|
|
def test_missing
|
|
setup_test_formula "foo"
|
|
setup_test_formula "bar"
|
|
|
|
(HOMEBREW_CELLAR/"bar/1.0").mkpath
|
|
assert_match "foo", cmd("missing")
|
|
end
|
|
end
|