osem-fcy/spec/factories/comments.rb

12 lines
274 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2018-09-03 20:48:28 +02:00
# Read about factories at https://github.com/thoughtbot/factory_bot
2015-08-25 14:41:09 +02:00
FactoryBot.define do
2015-08-25 14:41:09 +02:00
factory :comment do
body { 'Most interresting comment ever, created by a girl.' }
2015-08-25 14:41:09 +02:00
user
association :commentable, factory: :event
end
end