2015-12-31 16:56:13 -06:00
|
|
|
RSpec.shared_examples_for 'Msf::Module::FullName' do
|
2014-10-16 15:33:13 -05:00
|
|
|
it { is_expected.to respond_to :fullname }
|
|
|
|
|
it { is_expected.to respond_to :refname }
|
|
|
|
|
it { is_expected.to respond_to :shortname }
|
|
|
|
|
|
|
|
|
|
context 'class' do
|
|
|
|
|
subject {
|
|
|
|
|
described_class
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
it { is_expected.to respond_to :fullname }
|
|
|
|
|
it { is_expected.to respond_to :refname }
|
|
|
|
|
it { is_expected.to respond_to :refname= }
|
|
|
|
|
it { is_expected.to respond_to :shortname }
|
|
|
|
|
end
|
|
|
|
|
end
|