1# frozen_string_literal: true 2 3describe WPScan::Finders::Themes::UrlsIn404Page do 4 subject(:finder) { described_class.new(target) } 5 let(:target) { WPScan::Target.new(url) } 6 let(:url) { 'http://wp.lab/' } 7 let(:fixtures) { FINDERS_FIXTURES.join('themes', 'urls_in_404_page') } 8 9 # This stuff is just a child class of URLsInHomepage (using the error_404_res rather than homepage_res) 10 # which already has a spec 11end 12 13