2015-12-31 16:56:13 -06:00
|
|
|
RSpec.shared_examples_for 'Msf::Module::UI::Message' do
|
2014-10-16 10:05:45 -05:00
|
|
|
it_should_behave_like 'Msf::Module::UI::Message::Verbose'
|
|
|
|
|
|
2014-10-16 09:45:17 -05:00
|
|
|
it { is_expected.to respond_to :print_error }
|
2016-11-15 19:20:42 -06:00
|
|
|
it { is_expected.to respond_to :print_bad }
|
2014-10-16 09:45:17 -05:00
|
|
|
it { is_expected.to respond_to :print_good }
|
|
|
|
|
it { is_expected.to respond_to :print_prefix }
|
|
|
|
|
it { is_expected.to respond_to :print_status }
|
|
|
|
|
it { is_expected.to respond_to :print_warning }
|
2016-11-15 19:20:42 -06:00
|
|
|
end
|