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

13 lines
275 B
Ruby

# Copyright (C) 2024 Manuel Bustillo
FactoryBot.define do
factory :guest do
association :group
first_name { Faker::Name.first_name }
last_name { Faker::Name.last_name }
email { Faker::Internet.email }
phone { Faker::PhoneNumber.cell_phone }
end
end