mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 19:27:52 +01:00
10 lines
162 B
Ruby
10 lines
162 B
Ruby
FactoryBot.define do
|
|
factory :comment do
|
|
sequence(:body) { |n| "Comment #{n}" }
|
|
user
|
|
post
|
|
parent { nil }
|
|
is_post_update { false }
|
|
end
|
|
end
|