osem-fcy/spec/factories/lodgings.rb

16 lines
386 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2018-09-03 20:48:28 +02:00
# Read about factories at https://github.com/thoughtbot/factory_bot
2014-06-14 20:41:26 +05:30
FactoryBot.define do
2014-06-14 20:41:26 +05:30
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
factory :lodging_xss, parent: :lodging do
description { '<div id="divInjectedElement"></div>' }
end
2014-06-14 20:41:26 +05:30
end