mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-30 21:27:17 +00:00
8 lines
180 B
Ruby
8 lines
180 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :calculator_flat_rate, class: Calculator::FlatRate do
|
|
preferred_amount { generate(:calculator_amount) }
|
|
end
|
|
end
|