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