19 lines
340 B
Ruby
Raw Permalink Normal View History

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
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