Manuel Bustillo
8c4e6a0109
All checks were successful
Run unit tests / unit_tests (push) Successful in 3m36s
Reviewed-on: #8 Co-authored-by: Manuel Bustillo <bustikiller@bustikiller.com> Co-committed-by: Manuel Bustillo <bustikiller@bustikiller.com>
9 lines
213 B
Ruby
9 lines
213 B
Ruby
FactoryBot.define do
|
|
factory :guest do
|
|
first_name { Faker::Name.first_name }
|
|
last_name { Faker::Name.last_name }
|
|
email { Faker::Internet.email }
|
|
phone { Faker::PhoneNumber.cell_phone }
|
|
end
|
|
end
|