Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
wpscanteam
GitHub Repository: wpscanteam/wpscan
Path: blob/master/spec/app/models/interesting_finding_spec.rb
486 views
1
# frozen_string_literal: true
2
3
describe WPScan::Model::InterestingFinding do
4
it_behaves_like WPScan::References do
5
subject(:finding) { described_class.new('http://e.org/file.php', opts) }
6
let(:opts) { { references: references } }
7
let(:references) { {} }
8
end
9
end
10
11