12 lines
186 B
Ruby
12 lines
186 B
Ruby
# Copyright (C) 2024 Manuel Bustillo
|
|
|
|
FactoryBot.define do
|
|
factory :guest do
|
|
group
|
|
wedding
|
|
|
|
name { Faker::Name.name }
|
|
phone { Faker::PhoneNumber.cell_phone }
|
|
end
|
|
end
|