Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
rapid7
GitHub Repository: rapid7/metasploit-framework
Path: blob/master/test/tests/00_create_all_modules_test.rb
21470 views
1
require 'testbase'
2
3
describe Msf::Simple::Framework do
4
$msf.modules.each_module do |name, mod|
5
ref = name
6
klass = mod
7
it "should be able create #{ref}" do
8
e = $msf.modules.create(ref)
9
e.should_not == nil
10
end
11
end
12
end
13
14