88658064df
git-svn-id: file:///home/svn/incoming/trunk@3242 4d416f70-5f16-0410-b530-b9f4589650da
22 lines
303 B
Ruby
22 lines
303 B
Ruby
#!/usr/bin/env ruby
|
|
|
|
require 'test/unit'
|
|
require 'msf/base'
|
|
require 'msf/base/sessions/command_shell.rb.ut'
|
|
|
|
module Msf
|
|
module Base
|
|
|
|
class TestSuite
|
|
def self.suite
|
|
suite = Test::Unit::TestSuite.new("Msf Base")
|
|
|
|
suite << Msf::Session::CommandShell::UnitTest.suite
|
|
|
|
return suite;
|
|
end
|
|
end
|
|
|
|
end
|
|
end
|