Files
mozo-backend/spec/factories/order_factory.rb
T
2014-07-21 20:31:11 +02:00

17 lines
375 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
trait :cancelled do
state 'cancelled'
end
end
end