brew/Library/Homebrew/test/test_unlink.rb
2016-09-27 00:15:56 +02:00

11 lines
278 B
Ruby

require "helper/integration_command_test_case"
class IntegrationCommandTestUnlink < IntegrationCommandTestCase
def test_unlink
setup_test_formula "testball"
cmd("install", "testball")
assert_match "Would remove", cmd("unlink", "--dry-run", "testball")
end
end