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