2009-10-01 18:18:01 +00:00
|
|
|
require 'testbase'
|
|
|
|
|
|
|
|
describe Msf::Simple::Framework do
|
2013-09-30 18:47:53 +00:00
|
|
|
$msf.modules.each_module do |name, mod|
|
|
|
|
ref = name
|
|
|
|
klass = mod
|
|
|
|
it "should be able create #{ref}" do
|
|
|
|
e = $msf.modules.create(ref)
|
2009-10-01 18:18:01 +00:00
|
|
|
e.should_not == nil
|
2013-09-30 18:47:53 +00:00
|
|
|
end
|
|
|
|
end
|
2009-10-01 18:18:01 +00:00
|
|
|
end
|