osem-fcy/spec/factories/lodgings.rb
2018-09-06 00:42:28 +02:00

15 lines
387 B
Ruby

# frozen_string_literal: true
# Read about factories at https://github.com/thoughtbot/factory_girl
FactoryBot.define do
factory :lodging do
name { "#{Faker::App.name} Hotel" }
description { Faker::Lorem.paragraph }
website_link { Faker::Internet.url }
end
factory :lodging_xss, parent: :lodging do
description { '<div id="divInjectedElement"></div>' }
end
end