14 lines
239 B
Ruby

# Copyright (C) 2024-2025 LibreWeddingPlanner contributors
# frozen_string_literal: true
FactoryBot.define do
factory :guest do
group
wedding
name { Faker::Name.name }
phone { Faker::PhoneNumber.cell_phone }
end
end