13 lines
343 B
Ruby
13 lines
343 B
Ruby
# frozen_string_literal: true
|
|
|
|
describe WPScan::Finders::Plugins::KnownLocations do
|
|
subject(:finder) { described_class.new(target) }
|
|
let(:target) { WPScan::Target.new(url) }
|
|
let(:url) { 'http://ex.lo/' }
|
|
let(:fixtures) { FINDERS_FIXTURES.join('plugins', 'known_locations') }
|
|
|
|
describe '#aggressive' do
|
|
xit
|
|
end
|
|
end
|