mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-17 00:07:24 +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
|