Sha256: 40487c12a0d31a20414e6137b617d004679a737e805d16830ce8d1ce56014089
Contents?: true
Size: 1.22 KB
Versions: 1
Compression:
Stored size: 1.22 KB
Contents
require 'spec_helper' describe 'Veritas::Algebra::Rename::Aliases#eql?' do subject { object.eql?(other) } let(:klass) { Algebra::Rename::Aliases } let(:attribute) { Attribute::Integer.new(:id) } let(:aliases) { { attribute => attribute.rename(:other_id) } } let(:object) { klass.new(aliases) } 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(aliases) } it { should be(false) } it 'is symmetric' do should == other.eql?(object) end end context 'with an object having different aliases' do let(:other_aliases) { { attribute => attribute.rename(:another_id) } } let(:other) { klass.new(other_aliases) } 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/algebra/rename/aliases/eql_spec.rb |