Sha256: 700a0eff3724f881ea72df307fba4352b19247d8bf7bf400d863eede4dbc2854
Contents?: true
Size: 1.37 KB
Versions: 5
Compression:
Stored size: 1.37 KB
Contents
require 'spec_helper' describe Virtus::AttributeSet, '#<<' do subject { object << attribute } let(:attributes) { [] } let(:parent) { described_class.new } let(:object) { described_class.new(parent, attributes) } let(:name) { :name } before { attribute.stub(:define_accessor_methods) } context 'with a new attribute' do let(:attribute) { mock('Attribute', :name => name) } it { should equal(object) } it 'adds an attribute' do expect { subject }.to change { object.to_a }. from(attributes). to([ attribute ]) end it 'indexes the new attribute under its #name property' do expect { subject }.to change { object[name] }. from(nil). to(attribute) end it 'indexes the new attribute under the string version of its #name property' do expect { subject }.to change { object[name.to_s] }. from(nil). to(attribute) end end context 'with a duplicate attribute' do let(:attributes) { [ mock('Attribute', :name => name) ] } let(:attribute) { mock('Duplicate', :name => name) } it { should equal(object) } it 'replaces the original attribute' do expect { subject }.to change { object.to_a }. from(attributes). to([ attribute ]) end end end
Version data entries
5 entries across 5 versions & 2 rubygems