Files
growstuff/spec/factories/comments.rb
2019-12-20 03:33:23 +00:00

11 lines
207 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :comment do
post
author
sequence(:body) { |n| "OMG LOL #{n}" }
# because our commenters are more polite than YouTube's
end
end