metamaps--metamaps/spec/factories/synapses.rb
2016-09-24 11:00:46 +08:00

13 lines
310 B
Ruby

# frozen_string_literal: true
FactoryGirl.define do
factory :synapse do
sequence(:desc) { |n| "Cool synapse ##{n}" }
category :'from-to'
permission :commons
association :topic1, factory: :topic
association :topic2, factory: :topic
user
weight 1 # TODO: drop this column
end
end