Sha256: e369e1023f95f24a3374585b29e11e6d903c9203f4641e44472b3f8e86e9d53a
Contents?: true
Size: 1.57 KB
Versions: 1
Compression:
Stored size: 1.57 KB
Contents
# encoding: utf-8 require 'spec_helper' describe Relation::Header, '#eql?' do subject { object.eql?(other) } let(:attributes) { [ [ :id, Integer ] ] } let(:object) { described_class.coerce(attributes) } context 'with the same object' do let(:other) { object } it { should be(true) } it 'is symmetric' do should eql(other.eql?(object)) end end context 'with an equivalent object' do let(:other) { object.dup } it { should be(true) } it 'is symmetric' do should eql(other.eql?(object)) end end context 'with an equivalent object of subclasses' do let(:other) { Class.new(described_class).coerce(attributes) } it { should be(false) } it 'is symmetric' do should eql(other.eql?(object)) end end context 'with an object having different attributes' do let(:other_attributes) { [ [ :name, String ] ] } let(:other) { described_class.coerce(other_attributes) } it { should be(false) } it 'is symmetric' do should eql(other.eql?(object)) end end context 'with an object having equivalent attributes in a different order' do let(:attribute1) { [ :id, Integer ] } let(:attribute2) { [ :name, String ] } let(:object) { described_class.coerce([ attribute1, attribute2 ]) } let(:other) { described_class.coerce([ attribute2, attribute1 ]) } it { should be(true) } it 'is symmetric' do should eql(other.eql?(object)) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
axiom-0.1.0 | spec/unit/axiom/relation/header/eql_spec.rb |