aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/test_unlink.rb
blob: 091bd8c45bae60f896cf72f980c7440a278c2aca (plain)
1
2
3
4
5
6
7
8
9
10
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