Sha256: cebcd39c8970e46aba46da81330337029c56897cd1cec38b61154fa61a64bcb8
Contents?: true
Size: 1.06 KB
Versions: 1
Compression:
Stored size: 1.06 KB
Contents
require 'spec_helper' describe Popolo::Person do [:birth_date, :death_date].each do |attribute| it_should_behave_like 'a model with a date attribute', attribute end describe '#to_s' do it 'should return the name if the name, given name and family name are blank' do FactoryGirl.build(:person, name: nil).to_s.should == nil end it 'should return the given name and family name if the name is blank' do FactoryGirl.build(:person, name: nil, given_name: 'John', family_name: 'Public').to_s.should == 'John Public' end it 'should return the family name if the name and given name are blank' do FactoryGirl.build(:person, name: nil, family_name: 'Public').to_s.should == 'Public' end it 'should return the given name if the name and family name are blank' do FactoryGirl.build(:person, name: nil, given_name: 'John').to_s.should == 'John' end it 'should return the name if present' do FactoryGirl.build(:person, given_name: 'John', family_name: 'Public').to_s.should == 'John Q. Public' end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
popolo-0.0.3 | spec/models/popolo/person_spec.rb |