Files
openfoodnetwork/spec/factories/voucher_factory.rb
2023-05-19 17:19:54 +10:00

9 lines
152 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :voucher do
enterprise { build(:distributor_enterprise) }
amount { 15 }
end
end