diff --git a/spec/modules_spec.rb b/spec/modules_spec.rb index c5ba65bb48ab..ca0777fadb00 100644 --- a/spec/modules_spec.rb +++ b/spec/modules_spec.rb @@ -19,16 +19,22 @@ type_directory: 'exploits' it_should_behave_like 'all modules with module type can be instantiated', - module_type: 'nop', + module_type: 'evasion', modules_pathname: modules_pathname, - type_directory: 'nops' + type_directory: 'evasion' it_should_behave_like 'all modules with module type can be instantiated', - module_type: 'post', + module_type: 'nop', modules_pathname: modules_pathname, - type_directory: 'posts' + type_directory: 'nops' + it_should_behave_like 'all modules with module type can be instantiated', module_type: 'payload', modules_pathname: modules_pathname, type_directory: 'payload' + + it_should_behave_like 'all modules with module type can be instantiated', + module_type: 'post', + modules_pathname: modules_pathname, + type_directory: 'post' end