mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
15 lines
387 B
Ruby
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
|