mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
11 lines
278 B
Ruby
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
|