Extract Msf::DBManager::Import::FusionVM shared examples

MSP-11124
bug/bundler_fix
Luke Imhoff 2014-10-15 09:38:44 -05:00
parent e5236e9b56
commit 66b1dcc42d
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_fusionvm_xml }
it { is_expected.to respond_to :import_ip_list }
it { is_expected.to respond_to :import_ip_list_file }
it { is_expected.to respond_to :import_libpcap }
@ -67,6 +66,7 @@ shared_examples_for 'Msf::DBManager::Import' do
it_should_behave_like 'Msf::DBManager::Import::Burp'
it_should_behave_like 'Msf::DBManager::Import::CI'
it_should_behave_like 'Msf::DBManager::Import::Foundstone'
it_should_behave_like 'Msf::DBManager::Import::FusionVM'
it_should_behave_like 'Msf::DBManager::Import::IP360'
it_should_behave_like 'Msf::DBManager::Import::MsfXml'
it_should_behave_like 'Msf::DBManager::Import::Qualys'

View File

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