Manuel Bustillo 658c2331ca
All checks were successful
Add copyright notice / copyright_notice (pull_request) Successful in 1m1s
Run unit tests / unit_tests (pull_request) Successful in 2m8s
Build Nginx-based docker image / build-static-assets (pull_request) Successful in 40m9s
Add copyright notice
2024-10-28 22:07:35 +00:00

9 lines
146 B
Ruby

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