mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
11 lines
231 B
Ruby
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
|