Manuel Bustillo c177131672
All checks were successful
Run unit tests / unit_tests (pull_request) Successful in 2m12s
Fix factories
2024-08-11 18:59:27 +02:00

7 lines
108 B
Ruby

FactoryBot.define do
factory :group do
sequence(:name) { |i| "Group #{i}" }
order { 1 }
end
end