2024-12-28 16:31:27 +00:00
|
|
|
# Copyright (C) 2024 Manuel Bustillo
|
|
|
|
|
2024-12-26 19:30:32 +00:00
|
|
|
# Copyright (C) 2024 Manuel Bustillo
|
|
|
|
|
2024-12-28 18:37:47 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2024-12-17 00:46:01 +01:00
|
|
|
FactoryBot.define do
|
|
|
|
factory :group_affinity do
|
2024-12-28 17:28:16 +01:00
|
|
|
group_a factory: %i[group]
|
|
|
|
group_b factory: %i[group]
|
2024-12-17 00:46:01 +01:00
|
|
|
discomfort { GroupAffinity::NEUTRAL }
|
|
|
|
end
|
|
|
|
end
|