2024-04-29 00:17:15 +02:00
|
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2023-08-14 11:59:24 +02:00
|
|
|
|
FactoryBot.define do
|
|
|
|
|
factory :contact_information do
|
|
|
|
|
sequence(:nom) { |n| "Service #{n}" }
|
|
|
|
|
email { 'email@toto.com' }
|
|
|
|
|
telephone { '1234' }
|
|
|
|
|
horaires { 'de 9 h à 18 h' }
|
|
|
|
|
adresse { 'adresse' }
|
|
|
|
|
|
|
|
|
|
association :groupe_instructeur
|
|
|
|
|
end
|
|
|
|
|
end
|