wedding-planner/spec/factories/group_affinities.rb
Manuel Bustillo 0780b17f4b
All checks were successful
Check usage of free licenses / check-licenses (pull_request) Successful in 1m20s
Add copyright notice / copyright_notice (pull_request) Successful in 41s
Run unit tests / unit_tests (pull_request) Successful in 2m11s
Add copyright notice
2024-12-26 19:30:32 +00:00

10 lines
224 B
Ruby

# 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