mirror of
https://github.com/astuto/astuto.git
synced 2025-12-16 03:37:56 +01:00
9 lines
133 B
Ruby
9 lines
133 B
Ruby
FactoryBot.define do
|
|
factory :comment do
|
|
sequence(:body) { |n| "Comment #{n}" }
|
|
user
|
|
post
|
|
parent { nil }
|
|
end
|
|
end
|