Move helpers to Msf::DBManager::Import::Libpcap shared examples

MSP-11124
bug/bundler_fix
Luke Imhoff 2014-10-15 13:57:27 -05:00
parent ac30990177
commit 27c5cf8887
No known key found for this signature in database
GPG Key ID: 5B1FB01FB33356F8
2 changed files with 2 additions and 2 deletions

View File

@ -4,8 +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 :inspect_single_packet }
it { is_expected.to respond_to :inspect_single_packet_http }
it { is_expected.to respond_to :msf_import_timestamps }
it { is_expected.to respond_to :nils_for_nulls }
it { is_expected.to respond_to :report_import_note }

View File

@ -1,4 +1,6 @@
shared_examples_for 'Msf::DBManager::Import::Libpcap' do
it { is_expected.to respond_to :import_libpcap }
it { is_expected.to respond_to :import_libpcap_file }
it { is_expected.to respond_to :inspect_single_packet }
it { is_expected.to respond_to :inspect_single_packet_http }
end