docbrown/spec/factories/mentions.rb
2018-02-28 16:11:08 -05:00

7 lines
137 B
Ruby

FactoryBot.define do
factory :mention do
user
mentionable_id { rand(1000) }
mentionable_type { "Comment" }
end
end