scinote-web/spec/factories/comments.rb

9 lines
132 B
Ruby
Raw Normal View History

2019-05-09 23:10:02 +08:00
# frozen_string_literal: true
FactoryBot.define do
factory :comment do
message { Faker::Lorem.paragraph }
user
end
end