metamaps--metamaps/spec/factories/synapses.rb

10 lines
208 B
Ruby
Raw Normal View History

2015-10-19 15:23:49 +08:00
FactoryGirl.define do
factory :synapse do
desc { random_string(10) }
category :to
2015-12-16 22:19:58 +08:00
permission :commons
association :topic1, factory: :topic
association :topic2, factory: :topic
2015-10-19 15:23:49 +08:00
end
end