Sha256: 4c73fb3df4c2143a2549cfd36ada8ade9821afccc8cf31292bfb87666d06940e
Contents?: true
Size: 1.55 KB
Versions: 1
Compression:
Stored size: 1.55 KB
Contents
require 'spec_helper' describe 'Veritas::Operation::Binary#eql?' do subject { object.eql?(other) } let(:klass) { Class.new { include Operation::Binary } } let(:left) { mock('Left') } let(:right) { mock('Right') } let(:object) { klass.new(left, right) } context 'with the same object' do let(:other) { object } it { should be(true) } it 'is symmetric' do should == other.eql?(object) end end context 'with an equivalent object' do let(:other) { object.dup } it { should be(true) } it 'is symmetric' do should == other.eql?(object) end end context 'with an equivalent object of a subclass' do let(:other) { Class.new(klass).new(left, right) } it { should be(false) } it 'is symmetric' do should == other.eql?(object) end end context 'with an object having a different left' do let(:other_left) { mock('Other Left') } let(:other_right) { right } let(:other) { klass.new(other_left, other_right) } it { should be(false) } it 'is symmetric' do should == other.eql?(object) end end context 'with an object having a different right' do let(:other_left) { left } let(:other_right) { mock('Other Right') } let(:other) { klass.new(other_left, other_right) } it { should be(false) } it 'is symmetric' do should == other.eql?(object) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
veritas-0.0.2 | spec/unit/veritas/operation/binary/eql_spec.rb |