Files
metasploit-gs/lib/msf/core/UnitTestSuite.rb
T
Matt Miller 8a192dae88 moved shit around again
git-svn-id: file:///home/svn/incoming/trunk@2498 4d416f70-5f16-0410-b530-b9f4589650da
2005-05-21 17:57:00 +00:00

27 lines
352 B
Ruby

require 'Core'
module Msf
module Test
###
#
# FrameworkCoreTestSuite
# ----------------------
#
# This test suite is used to test the various core components of
# framework-core.
#
###
class FrameworkCoreTestSuite
def self.suite
suite = ::Test::Unit::TestSuite.new
suite << Msf::Test::DataStoreTestCase.suite
return suite;
end
end
end
end