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