brew/Library/Homebrew/test/test_missing.rb
2016-09-27 00:15:56 +02:00

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