8 lines
219 B
Ruby
8 lines
219 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
|
|
end
|
|
end
|