summaryrefslogtreecommitdiff
path: root/spec/bundler/bundler/dep_proxy_spec.rb
blob: 0f8d6b1076af6bf8e990646261d4e42c8b480198 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

RSpec.describe Bundler::DepProxy do
  let(:dep) { Bundler::Dependency.new("rake", ">= 0") }
  subject { described_class.new(dep, Gem::Platform::RUBY) }
  let(:same) { subject }
  let(:other) { subject.dup }
  let(:different) { described_class.new(dep, Gem::Platform::JAVA) }

  describe "#eql?" do
    it { expect(subject.eql?(same)).to be true }
    it { expect(subject.eql?(other)).to be true }
    it { expect(subject.eql?(different)).to be false }
    it { expect(subject.eql?(nil)).to be false }
    it { expect(subject.eql?("foobar")).to be false }
  end

  describe "#hash" do
    it { expect(subject.hash).to eq(same.hash) }
    it { expect(subject.hash).to eq(other.hash) }
  end
end