Używam przykładu FactoryGirl dla relacji has_many
z http://robots.thoughtbot.com/post/254496652/aint-no-calla-back-girl. Konkretnie, przykładem jest:FactoryGirl has_many association
Modele:
class Article < ActiveRecord::Base
has_many :comments
end
class Comment < ActiveRecord::Base
belongs_to :article
end
Fabryki:
factory :article do
body 'password'
factory :article_with_comment do
after_create do |article|
create(:comment, article: article)
end
end
end
factory :comment do
body 'Great article!'
end
Kiedy uruchomić ten sam przykład (z właściwego schematu, oczywiście), zostanie zgłoszony błąd
2.0.0p195 :001 > require "factory_girl_rails"
=> true
2.0.0p195 :002 > article = FactoryGirl.create(:article_with_comment)
ArgumentError: wrong number of arguments (3 for 1..2)
Czy istnieje nowy sposób tworzenia modeli ze skojarzeniami has_many
z FactoryGirl?