CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/test/tests/00_create_all_modules_test.rb
Views: 11766
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