Я тестирую следующее:
Счет
class Account < ActiveRecord::Base
has_many :ownerships
has_many :brands, :through => :ownerships
end
Право собственности присоединиться к модели
class Ownership < ActiveRecord::Base
belongs_to :brand
belongs_to :account
end
Test
it "should be able to apply for brand ownership" do
account = Account.create(valid_account_attributes)
account.ownerships.create(:brand => Brand.create(:name => 'Superuser'))
account.ownerships.first.state == 'pending'
end
И я продолжаю получать эту ошибку
You cannot call create unless the parent is saved
Я действительно не понимаю - какой родитель? Не следует ли создавать и сохранять все модели при использовании метода create? Я пытался поместить везде "account.save".