spec/models/concerns/identifiable_spec.rb in pupa-0.1.11 vs spec/models/concerns/identifiable_spec.rb in pupa-0.2.0

- old
+ new

@@ -12,40 +12,40 @@ klass.new end describe '#initialize' do it 'should initialize an empty IdentifierList' do - object.identifiers.should be_a(Pupa::IdentifierList) - object.identifiers.should == [] + expect(object.identifiers).to be_a(Pupa::IdentifierList) + expect(object.identifiers).to eq([]) end it 'should initialize the given IdentifierList' do object = klass.new(identifiers: [{identifier: '123456789', scheme: 'DUNS'}]) - object.identifiers.should == [{identifier: '123456789', scheme: 'DUNS'}] + expect(object.identifiers).to eq([{identifier: '123456789', scheme: 'DUNS'}]) end end describe '#identifiers=' do it 'should use coerce to a IdentifierList' do object.identifiers = [{identifier: '123456789', scheme: 'DUNS'}] - object.identifiers.should be_a(Pupa::IdentifierList) + expect(object.identifiers).to be_a(Pupa::IdentifierList) end it 'should symbolize keys' do object.identifiers = [{'identifier' => '123456789', 'scheme' => 'DUNS'}] - object.identifiers.should == [{identifier: '123456789', scheme: 'DUNS'}] + expect(object.identifiers).to eq([{identifier: '123456789', scheme: 'DUNS'}]) end end describe '#add_identifier' do it 'should add an identifier' do object.add_identifier('123456789', scheme: 'duns') - object.identifiers.should == [{identifier: '123456789', scheme: 'duns'}] + expect(object.identifiers).to eq([{identifier: '123456789', scheme: 'duns'}]) end it 'should not add an identifier without an identifier' do object.add_identifier(nil) object.add_identifier('') - object.identifiers.blank?.should == true + expect(object.identifiers.blank?).to eq(true) end end end