2025-01-13 20:38:47 +00:00
|
|
|
# Copyright (C) 2024 Manuel Bustillo
|
|
|
|
|
2025-01-13 21:37:02 +01:00
|
|
|
# Copyright (C) 2024-2025 LibreWeddingPlanner contributors
|
2024-12-28 16:31:27 +00:00
|
|
|
|
2025-01-13 21:37:02 +01:00
|
|
|
# Copyright (C) 2024-2025 LibreWeddingPlanner contributors
|
2024-11-30 18:31:48 +00:00
|
|
|
|
2024-12-28 18:37:47 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2024-11-30 19:24:59 +01:00
|
|
|
FactoryBot.define do
|
|
|
|
factory :wedding do
|
2024-12-01 09:58:39 +01:00
|
|
|
sequence(:slug) { |i| "wedding-#{i}" }
|
2024-11-30 19:24:59 +01:00
|
|
|
end
|
|
|
|
end
|