osem-fcy/spec/factories/lodgings.rb
2016-05-02 16:06:32 +02:00

9 lines
264 B
Ruby

# Read about factories at https://github.com/thoughtbot/factory_girl
FactoryGirl.define do
factory :lodging do
name { "#{Faker::App.name} Hotel" }
description { CGI.escapeHTML(Faker::Lorem.paragraph) }
website_link { Faker::Internet.url }
end
end