Files
openfoodnetwork/spec/factories/adjustment_factory.rb
2021-04-14 12:01:21 +01:00

11 lines
227 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :adjustment, class: Spree::Adjustment do
association(:adjustable, factory: :order)
amount { 100.0 }
label { 'Shipping' }
eligible { true }
end
end