# frozen_string_literal: true describe WPScan::Finders::Plugins::UrlsIn404Page do subject(:finder) { described_class.new(target) } let(:target) { WPScan::Target.new(url) } let(:url) { 'https://wp.lab/' } let(:fixtures) { FINDERS_FIXTURES.join('plugins', 'urls_in_404_page') } # This stuff is just a child class of URLsInHomepage (using the error_404_res rather than homepage_res) # which already has a spec end