wedding-planner/spec/factories/group_affinities.rb

10 lines
224 B
Ruby
Raw Normal View History

2024-12-26 19:30:32 +00:00
# Copyright (C) 2024 Manuel Bustillo
FactoryBot.define do
factory :group_affinity do
association :group_a, factory: :group
association :group_b, factory: :group
discomfort { GroupAffinity::NEUTRAL }
end
end