12 lines
203 B
Ruby
Raw Normal View History

2024-12-28 16:31:27 +00:00
# Copyright (C) 2024 Manuel Bustillo
# frozen_string_literal: true
2024-11-30 18:31:48 +00:00
# Copyright (C) 2024 Manuel Bustillo
2024-11-30 19:24:59 +01:00
FactoryBot.define do
factory :wedding do
sequence(:slug) { |i| "wedding-#{i}" }
2024-11-30 19:24:59 +01:00
end
end