# Copyright (C) 2024 Manuel Bustillo

FactoryBot.define do
  factory :wedding do
    sequence(:slug) { |i| "wedding-#{i}" }
    date { 1.year.from_now }
  end
end