mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-15 19:56:59 +08:00
11 lines
274 B
Ruby
11 lines
274 B
Ruby
require "helper/integration_command_test_case"
|
|
|
|
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
|