osem-fcy/spec/factories/lodgings.rb
2016-05-03 16:25:07 +02:00

9 lines
248 B
Ruby

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