Files
metasploit-gs/lib/rex/test.rb
T
Ramon de C Valle f124597a56 Code cleanups
git-svn-id: file:///home/svn/framework3/trunk@5773 4d416f70-5f16-0410-b530-b9f4589650da
2008-10-19 21:03:39 +00:00

35 lines
650 B
Ruby

require 'test/unit'
# DEFAULTS
module Rex
class Test
$_REX_TEST_NO_MOCK = nil
$_REX_TEST_TIMEOUT = 30
$_REX_TEST_SMB_HOST = '10.4.10.58'
$_REX_TEXT_SMB_USER = 'SMBTest'
$_REX_TEXT_SMB_PASS = 'SMBTest'
# overwrite test defaults with rex/test-config.rb
def self.load()
file = File.join( ENV.fetch('HOME'), '.msf3', 'test')
begin
if File.stat(file + '.rb')
require file
end
rescue
# just ignore the errors
end
end
def self.cantmock()
if (!$_REX_TEST_NO_MOCK)
raise RuntimeError, "*** $_REX_TEST_NO_MOCK must not be set for this test ***", caller
end
end
Rex::Test.load()
end
end