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 }
|
2014-10-09 11:35:07 -05:00
|
|
|
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
|