Manuel Bustillo c177131672
All checks were successful
Run unit tests / unit_tests (pull_request) Successful in 2m12s
Fix factories
2024-08-11 18:59:27 +02:00

11 lines
237 B
Ruby

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