changed contact has_many addresses to has_one

This commit is contained in:
Andres Keskküla 2014-08-05 16:29:59 +03:00
parent 356835bebf
commit 27ca5714cd
5 changed files with 6 additions and 6 deletions

View file

@ -1,7 +1,7 @@
require "rails_helper"
describe Contact do
it { should have_many(:addresses) }
it { should have_one(:address) }
context 'with invalid attribute' do
before(:each) { @contact = Fabricate(:contact) }