9 lines
162 B
Ruby
9 lines
162 B
Ruby
FactoryGirl.define do
|
|
factory :post do
|
|
user
|
|
subcreddit
|
|
title { Faker::Lorem.sentence }
|
|
link ''
|
|
content { Faker::Lorem.paragraph }
|
|
end
|
|
end
|