Sha256: 09b11fcbcc7cb58f9d1404ca96bac98c119cb36422258fddf7d54026c1724008
Contents?: true
Size: 1.37 KB
Versions: 8
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 } context 'with a new attribute' do let(:attribute) { Virtus::Attribute.build(String, :name => name) } it { is_expected.to 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) { [Virtus::Attribute.build(String, :name => name)] } let(:attribute) { Virtus::Attribute.build(String, :name => name) } it { is_expected.to 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
8 entries across 6 versions & 3 rubygems