Files
openfoodnetwork/spec/factories/inventory_unit_factory.rb
2020-12-09 23:09:33 +00:00

11 lines
231 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :inventory_unit, class: Spree::InventoryUnit do
variant
order
state { 'on_hand' }
association(:shipment, factory: :shipment, state: 'pending')
end
end