8 lines
99 B
Ruby
8 lines
99 B
Ruby
FactoryBot.define do
|
|
factory :comment do
|
|
user_id 1
|
|
post_id 1
|
|
body "MyText"
|
|
end
|
|
end
|