Files
metasploit-gs/spec/support/shared/examples/msf/db_manager/service.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
352 B
Ruby
Raw Normal View History

2015-12-31 16:56:13 -06:00
RSpec.shared_examples_for 'Msf::DBManager::Service' do
2018-04-02 08:08:23 -05:00
unless ENV['REMOTE_DB']
2018-05-14 17:43:24 -04:00
it { is_expected.to respond_to :delete_service }
2018-04-02 08:08:23 -05:00
it { is_expected.to respond_to :each_service }
end
2018-05-14 17:43:24 -04:00
it { is_expected.to respond_to :find_or_create_service }
it { is_expected.to respond_to :services }
2018-05-14 17:43:24 -04:00
it { is_expected.to respond_to :report_service }
2020-09-16 15:20:16 +01:00
end