Я пытаюсь использовать factory_girl с ассоциациями. У меня есть 2 модели: account_info и человек. AccountInfo принадлежит лицам, моя фабрика account_info выглядит так:
FactoryGirl.define do
factory :account_info do
entity_type 1
account_key { Faker::Twitter.user[:id] }
association :entity_id, factory: [:person]
association :social_media_site_id, factory: [:twitter]
end
end
По документации:
You can also specify a different factory or override attributes:
factory :post do
# ...
association :author, factory: :user, last_name: "Writely"
end
The behavior of the association method varies depending on the build strategy used for the parent object.
# Builds and saves a User and a Post
post = create(:post)
post.new_record? # => false
post.author.new_record? # => false
# Builds and saves a User, and then builds but does not save a Post
post = build(:post)
post.new_record? # => true
post.author.new_record? # => false
Создает запись Person, но Account_fo entity_id остается нулевым. Почему?
d = FactoryGirl.create(:account_info)
d.reload
AccountInfo Load (0.5ms) SELECT "account_infos".* FROM "account_infos" WHERE "account_infos"."id" = $1 LIMIT $2 [["id", 443], ["LIMIT", 1]]
=> #<AccountInfo id: 443, entity_type: "legislator", account_key: "498133264559673104", social_media_site_id: nil, entity_id: nil, created_at: "2018-04-29 13:18:49", updated_at: "2018-04-29 13:18:49">
Версия:
factory_girl_rails (4.9.0)
rails (5.1.6)
ruby (2.5.0)