我的问题似乎很常见,但我在文档或互联网本身中没有找到任何答案。
在尊重 factory_girl 的构建策略的同时,这似乎是这个问题的一个克隆,但在 factory_girl 发布后 2.5 年发生了很大变化。
我有一个名为 photos 的具有 has_many 关系的模型。我想填充这与保留我选择的构建策略有很多关系。
如果我打电话offering = FactoryGirl.build_stubbed :offering, :stay
,我希望offering.photos
成为一个存根模型的集合。
我发现实现这一目标的唯一方法是:
factory :offering do
association :partner, factory: :named_partner
association :destination, factory: :geolocated_destination
trait :stay do
title "Hotel Gran Vía"
description "Great hotel in a great zone with great views"
offering_type 'stay'
price 65
rooms 70
stars 4
event_spaces 3
photos do
case @build_strategy
when FactoryGirl::Strategy::Create then [FactoryGirl.create(:hotel_photo)]
when FactoryGirl::Strategy::Build then [FactoryGirl.build(:hotel_photo)]
when FactoryGirl::Strategy::Stub then [FactoryGirl.build_stubbed(:hotel_photo)]
end
end
end
end
无需说它必须存在更好的方法来做到这一点。
想法?