Files
metasploit-gs/spec/support/shared/examples/msf/module/options.rb
T

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

8 lines
415 B
Ruby
Raw Normal View History

2015-12-31 16:56:13 -06:00
RSpec.shared_examples_for 'Msf::Module::Options' do
2014-11-12 11:08:18 -06:00
it { is_expected.to respond_to_protected :deregister_options }
it { is_expected.to respond_to :options }
it { is_expected.to respond_to :validate }
2014-11-12 11:08:18 -06:00
it { is_expected.to respond_to_protected :register_advanced_options }
it { is_expected.to respond_to_protected :register_evasion_options }
it { is_expected.to respond_to_protected :register_options }
end