blob: 6d5cefc678e101877199eb7cad89e6ad4fc7950f (
plain)
1
2
3
4
5
6
7
8
9
10
|
require "testing_env"
class IntegrationCommandTestUnlink < IntegrationCommandTestCase
def test_unlink
setup_test_formula "testball"
cmd("install", "testball")
assert_match "Would remove", cmd("unlink", "--dry-run", "testball")
end
end
|