CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

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