aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/dependable_spec.rb
blob: 172305aa0e3340d4cabc92c904c3fd52f9731962 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
require "dependable"

describe Dependable do
  alias_matcher :be_a_build_dependency, :be_build

  subject { double(tags: tags).extend(described_class) }
  let(:tags) { ["foo", "bar", :build] }

  specify "#options" do
    expect(subject.options.as_flags.sort).to eq(%w[--foo --bar].sort)
  end

  specify "#build?" do
    expect(subject).to be_a_build_dependency
  end

  specify "#optional?" do
    expect(subject).not_to be_optional
  end

  specify "#recommended?" do
    expect(subject).not_to be_recommended
  end
end