mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
45 lines
1.1 KiB
Ruby
45 lines
1.1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require "formula_pin"
|
|
|
|
RSpec.describe FormulaPin do
|
|
subject(:formula_pin) { described_class.new(formula) }
|
|
|
|
let(:name) { "double" }
|
|
let(:formula) { instance_double(Formula, name:, rack: HOMEBREW_CELLAR/name) }
|
|
|
|
before do
|
|
formula.rack.mkpath
|
|
|
|
allow(formula).to receive(:installed_prefixes) do
|
|
formula.rack.directory? ? formula.rack.subdirs.sort : []
|
|
end
|
|
|
|
allow(formula).to receive(:installed_kegs) do
|
|
formula.installed_prefixes.map { |prefix| Keg.new(prefix) }
|
|
end
|
|
end
|
|
|
|
it "is not pinnable by default" do
|
|
expect(formula_pin).not_to be_pinnable
|
|
end
|
|
|
|
it "is pinnable if the Keg exists" do
|
|
(formula.rack/"0.1").mkpath
|
|
expect(formula_pin).to be_pinnable
|
|
end
|
|
|
|
specify "#pin and #unpin" do
|
|
(formula.rack/"0.1").mkpath
|
|
|
|
formula_pin.pin
|
|
expect(formula_pin).to be_pinned
|
|
expect(HOMEBREW_PINNED_KEGS/name).to be_a_directory
|
|
expect(HOMEBREW_PINNED_KEGS.children.count).to eq(1)
|
|
|
|
formula_pin.unpin
|
|
expect(formula_pin).not_to be_pinned
|
|
expect(HOMEBREW_PINNED_KEGS).not_to be_a_directory
|
|
end
|
|
end
|