Manuel Bustillo
c177131672
All checks were successful
Run unit tests / unit_tests (pull_request) Successful in 2m12s
7 lines
108 B
Ruby
7 lines
108 B
Ruby
FactoryBot.define do
|
|
factory :group do
|
|
sequence(:name) { |i| "Group #{i}" }
|
|
order { 1 }
|
|
end
|
|
end
|