mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-03-05 02:41:33 +00:00
9 lines
152 B
Ruby
9 lines
152 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :voucher do
|
|
enterprise { build(:distributor_enterprise) }
|
|
amount { 15 }
|
|
end
|
|
end
|