aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/pin_unpin_test.rb
blob: 65fb9e4daa8c6a14f045b052793201a7db531b3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require "testing_env"

class IntegrationCommandTestPinUnpin < IntegrationCommandTestCase
  def test_pin_unpin
    setup_test_formula "testball"
    (HOMEBREW_CELLAR/"testball/0.0.1/foo").mkpath

    cmd("pin", "testball")
    cmd("upgrade")
    refute((HOMEBREW_CELLAR/"testball/0.1").directory?,
      "The latest version directory should NOT be created")

    cmd("unpin", "testball")
    cmd("upgrade")
    assert((HOMEBREW_CELLAR/"testball/0.1").directory?,
      "The latest version directory should be created")
  end
end