blob: f3f5dccc7a55481545a25f63b551adc9e6752d1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require "testing_env"
class IntegrationCommandTestUpgrade < IntegrationCommandTestCase
def test_upgrade
setup_test_formula "testball"
(HOMEBREW_CELLAR/"testball/0.0.1/foo").mkpath
cmd("upgrade")
assert((HOMEBREW_CELLAR/"testball/0.1").directory?,
"The latest version directory should be created")
end
end
|