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