blob: 050934238ea9c0fb85330d2496741f12e6ebce24 (
plain)
1
2
3
4
5
6
7
8
|
require "helper/integration_command_test_case"
class IntegrationCommandTestUninstall < IntegrationCommandTestCase
def test_uninstall
cmd("install", testball)
assert_match "Uninstalling testball", cmd("uninstall", "--force", testball)
end
end
|