Extract Msf::DBManager::Import::Report shared examples

MSP-11124
bug/bundler_fix
Luke Imhoff 2014-10-15 13:53:09 -05:00
parent 7aed88f11b
commit 5d59224520
No known key found for this signature in database
GPG Key ID: 5B1FB01FB33356F8
2 changed files with 4 additions and 1 deletions

View File

@ -4,7 +4,6 @@ shared_examples_for 'Msf::DBManager::Import' do
it { is_expected.to respond_to :import }
it { is_expected.to respond_to :import_file }
it { is_expected.to respond_to :import_filetype_detect }
it { is_expected.to respond_to :import_report }
it { is_expected.to respond_to :inspect_single_packet }
it { is_expected.to respond_to :inspect_single_packet_http }
it { is_expected.to respond_to :msf_import_timestamps }
@ -34,6 +33,7 @@ shared_examples_for 'Msf::DBManager::Import' do
it_should_behave_like 'Msf::DBManager::Import::OpenVAS'
it_should_behave_like 'Msf::DBManager::Import::Outpost24'
it_should_behave_like 'Msf::DBManager::Import::Qualys'
it_should_behave_like 'Msf::DBManager::Import::Report'
it_should_behave_like 'Msf::DBManager::Import::Retina'
it_should_behave_like 'Msf::DBManager::Import::Spiceworks'
it_should_behave_like 'Msf::DBManager::Import::Wapiti'

View File

@ -0,0 +1,3 @@
shared_examples_for 'Msf::DBManager::Import::Report' do
it { is_expected.to respond_to :import_report }
end