blob: 3e7148ded4f13cee5646a0bbed52b508ec76bfaf (
plain)
1
2
3
4
5
6
7
8
9
10
|
require "testing_env"
class IntegrationCommandTestOutdated < IntegrationCommandTestCase
def test_outdated
setup_test_formula "testball"
(HOMEBREW_CELLAR/"testball/0.0.1/foo").mkpath
assert_equal "testball", cmd("outdated")
end
end
|