Files
mozo-backend/spec/factories/order_factory.rb
T

14 lines
319 B
Ruby

FactoryGirl.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
end
end