Files
danbooru/test/factories/artist_commentary.rb
2016-10-11 06:57:05 +00:00

10 lines
336 B
Ruby

FactoryGirl.define do
factory(:artist_commentary) do
post :factory => :post
original_title { FFaker::Lorem.sentences.join(" ") }
original_description { FFaker::Lorem.sentences.join(" ") }
translated_title { FFaker::Lorem.sentences.join(" ") }
translated_description { FFaker::Lorem.sentences.join(" ") }
end
end