aboutsummaryrefslogtreecommitdiffstats
path: root/spec/rubyspec/library/delegate/delegator/eql_spec.rb
blob: 7d101eb26200680b4a41088fdec461b128e61562 (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
25
26
27
28
29
30
31
32
33
34
35
require File.expand_path('../../../../spec_helper', __FILE__)
require File.expand_path('../../fixtures/classes', __FILE__)

describe "Delegator#eql?" do
  it "returns true when compared with same delegator" do
    base = mock('base')
    delegator = DelegateSpecs::Delegator.new(base)

    delegator.eql?(delegator).should be_true
  end

  it "returns true when compared with the inner object" do
    base = mock('base')
    delegator = DelegateSpecs::Delegator.new(base)

    delegator.eql?(base).should be_true
  end

  it "returns false when compared with the delegator with other object" do
    base = mock('base')
    other = mock('other')
    delegator0 = DelegateSpecs::Delegator.new(base)
    delegator1 = DelegateSpecs::Delegator.new(other)

    delegator0.eql?(delegator1).should be_false
  end

  it "returns false when compared with the other object" do
    base = mock('base')
    other = mock('other')
    delegator = DelegateSpecs::Delegator.new(base)

    delegator.eql?(other).should be_false
  end
end