git-svn-id: https://beef.googlecode.com/svn/trunk@1327 b87d56ec-f9c0-11de-8c8a-61c5e9addfc9
21 lines
298 B
Ruby
21 lines
298 B
Ruby
require 'test/unit'
|
|
require 'webrick'
|
|
|
|
class TC_Loader < Test::Unit::TestCase
|
|
|
|
def setup
|
|
$root_dir="../../"
|
|
$:.unshift File.join( %w{ ../../ } )
|
|
end
|
|
|
|
#
|
|
# Test the loader is functional
|
|
#
|
|
def test_loader
|
|
assert_nothing_raised do
|
|
require 'core/loader'
|
|
end
|
|
end
|
|
|
|
end
|