mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-18 14:11:10 +00:00
9 lines
248 B
Ruby
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
|