brew/Library/Homebrew/test/unlink_test.rb
2016-11-16 23:52:38 +01:00

11 lines
253 B
Ruby

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