mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-01-06 08:27:47 -05:00
11 lines
207 B
Ruby
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
|