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

10 lines
241 B
Ruby

FactoryGirl.define do
factory :list do
association :table
association :supplier #TODO warning! this may create a different supplier than the one created by the associated table
trait :active do
#default
end
end
end