2024-10-28 22:07:35 +00:00
|
|
|
# Copyright (C) 2024 Manuel Bustillo
|
|
|
|
|
2024-08-01 18:27:41 +00:00
|
|
|
FactoryBot.define do
|
|
|
|
factory :guest do
|
2024-08-11 18:59:27 +02:00
|
|
|
association :group
|
|
|
|
|
2024-08-01 18:27:41 +00:00
|
|
|
first_name { Faker::Name.first_name }
|
|
|
|
last_name { Faker::Name.last_name }
|
|
|
|
email { Faker::Internet.email }
|
|
|
|
phone { Faker::PhoneNumber.cell_phone }
|
|
|
|
end
|
|
|
|
end
|