12 lines
262 B
Ruby
12 lines
262 B
Ruby
require "integration_cmds_tests"
|
|
|
|
class IntegrationCommandTestMissing < IntegrationCommandTests
|
|
def test_missing
|
|
setup_test_formula "foo"
|
|
setup_test_formula "bar"
|
|
|
|
(HOMEBREW_CELLAR/"bar/1.0").mkpath
|
|
assert_match "foo", cmd("missing")
|
|
end
|
|
end
|