2014-06-14 20:41:26 +05:30
|
|
|
# Read about factories at https://github.com/thoughtbot/factory_girl
|
|
|
|
|
|
|
|
|
|
FactoryGirl.define do
|
|
|
|
|
factory :lodging do
|
2016-04-30 17:56:23 +02:00
|
|
|
name { "#{Faker::App.name} Hotel" }
|
2016-05-02 17:39:06 +02:00
|
|
|
description { Faker::Lorem.paragraph }
|
2016-04-30 17:56:23 +02:00
|
|
|
website_link { Faker::Internet.url }
|
2014-06-14 20:41:26 +05:30
|
|
|
end
|
2017-01-09 12:27:11 -06:00
|
|
|
|
|
|
|
|
factory :lodging_xss, parent: :lodging do
|
|
|
|
|
description { '<div id="divInjectedElement"></div>' }
|
|
|
|
|
end
|
2014-06-14 20:41:26 +05:30
|
|
|
end
|