wedding-planner/spec/factories/group_affinities.rb

8 lines
186 B
Ruby
Raw Normal View History

FactoryBot.define do
factory :group_affinity do
association :group_a, factory: :group
association :group_b, factory: :group
discomfort { GroupAffinity::NEUTRAL }
end
end