Files
mozo-backend/spec/factories/order_factory.rb
T
Benjamin 46fc427694 updates
2021-04-19 15:14:37 -05:00

17 lines
374 B
Ruby

FactoryBot.define do
factory :order do
association :list
association :user
association :supplier #TODO warning! this may create a different supplier than the one created by the associated table
trait :placed do
state 'placed'
end
trait :active do
state 'active'
end
trait :cancelled do
state 'cancelled'
end
end
end