2024-10-31 23:34:15 +00:00
|
|
|
# Copyright (C) 2024 Manuel Bustillo
|
|
|
|
|
2024-10-28 22:38:47 +01:00
|
|
|
FactoryBot.define do
|
|
|
|
factory :expense do
|
2024-12-01 09:58:39 +01:00
|
|
|
wedding
|
2024-10-28 22:38:47 +01:00
|
|
|
sequence(:name) { |i| "Expense #{i}" }
|
|
|
|
pricing_type { "fixed" }
|
|
|
|
amount { 100 }
|
|
|
|
end
|
|
|
|
|
|
|
|
trait :fixed do
|
|
|
|
pricing_type { "fixed" }
|
|
|
|
end
|
|
|
|
|
|
|
|
trait :per_person do
|
|
|
|
pricing_type { "per_person" }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|