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