docbrown/spec/factories/comments.rb
Ben Halpern a761dfbc83
Finalize merge accounts (#820)
* Add initial remove association feature

* Add initial account deletion feature

* Add back in cursor pointer

* Update email text copy

* Update copy on email html

* Fix nav issue and add integration buttons to account
2018-10-04 12:27:37 -04:00

8 lines
192 B
Ruby

FactoryBot.define do
factory :comment do
user
body_markdown { Faker::Hipster.paragraph(1) }
commentable_id { rand(1000) }
commentable_type { "Article" }
end
end