# 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 factory :lodging_xss, parent: :lodging do description { '
' } end end