7 lines
137 B
Ruby
7 lines
137 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :groupe_gestionnaire do
|
|
sequence(:name) { |n| "Group #{n}" }
|
|
end
|
|
end
|