Manuel Bustillo
c177131672
All checks were successful
Run unit tests / unit_tests (pull_request) Successful in 2m12s
11 lines
237 B
Ruby
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
|