在 Rails 应用程序中,我使用 FactoryGirl 来定义一个通用工厂以及几个更具体的特征。一般情况和除一个特征之外的所有特征都有特定的关联,但我想定义一个特征,其中没有创建/构建该关联。我可以使用after
回调将关联设置id
为nil
,但这并不会阻止关联记录的创建。
特征定义中有没有办法完全禁用为特征所属的工厂定义的关联的创建/构建?
例如:
FactoryGirl.define do
factory :foo do
attribute "value"
association :bar
trait :one do
# This has the bar association
end
trait :two do
association :bar, turn_off_somehow: true
# foos created with trait :two will have bar_id = nil
# and an associated bar will never be created
end
end
end