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