spec/models/concerns/nameable_spec.rb in pupa-0.0.10 vs spec/models/concerns/nameable_spec.rb in pupa-0.0.11

- old
+ new

@@ -10,17 +10,25 @@ let :object do klass.new end + describe '#other_names' do + it 'should symbolize keys' do + object.other_names = [{'name' => 'Mr. Ziggy Q. Public, Esq.', 'start_date' => '1920-01', 'end_date' => '1949-12-31', 'note' => 'Birth name'}] + object.other_names.should == [{name: 'Mr. Ziggy Q. Public, Esq.', start_date: '1920-01', end_date: '1949-12-31', note: 'Birth name'}] + end + end + describe '#add_name' do it 'should add a name' do object.add_name('Mr. Ziggy Q. Public, Esq.', start_date: '1920-01', end_date: '1949-12-31', note: 'Birth name') object.other_names.should == [{name: 'Mr. Ziggy Q. Public, Esq.', start_date: '1920-01', end_date: '1949-12-31', note: 'Birth name'}] end it 'should not add a name without a name' do object.add_name(nil) + object.add_name('') object.other_names.blank?.should == true end end end