aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/cmd/unpin_spec.rb
blob: 4f14626d8f4cd160db74c6e51fe35834addf8e16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
describe "brew unpin", :integration_test do
  it "unpins a Formula's version" do
    setup_test_formula "testball"
    (HOMEBREW_CELLAR/"testball/0.0.1/foo").mkpath

    shutup do
      expect { brew "pin", "testball" }.to be_a_success
      expect { brew "unpin", "testball" }.to be_a_success
      expect { brew "upgrade" }.to be_a_success
    end

    expect(HOMEBREW_CELLAR/"testball/0.1").to be_a_directory
  end
end