14 lines
271 B
Ruby
14 lines
271 B
Ruby
# Copyright (C) 2024 Manuel Bustillo
|
|
|
|
# Copyright (C) 2024 Manuel Bustillo
|
|
|
|
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :group_affinity do
|
|
group_a factory: %i[group]
|
|
group_b factory: %i[group]
|
|
discomfort { GroupAffinity::NEUTRAL }
|
|
end
|
|
end
|