[Zope3-checkins] CVS: Zope3/src/zope/app/process/tests - test_schema.py:1.1.2.1

Fred L. Drake, Jr. fred@zope.com
Tue, 24 Jun 2003 14:34:52 -0400


Update of /cvs-repository/Zope3/src/zope/app/process/tests
In directory cvs.zope.org:/tmp/cvs-serv19301

Added Files:
      Tag: fdrake-zconfig-in-zope-3-branch
	test_schema.py 
Log Message:
add test that the schema can actually be loaded


=== Added File Zope3/src/zope/app/process/tests/test_schema.py ===
##############################################################################
#
# Copyright (c) 2003 Zope Corporation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.0 (ZPL).  A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
"""Test that the Zope appserver configuration schema can be loaded.

$Id: test_schema.py,v 1.1.2.1 2003/06/24 18:34:51 fdrake Exp $
"""

import os.path
import unittest

import ZConfig


class TestConfiguration(unittest.TestCase):

    def test_schema(self):
        dir = os.path.dirname(os.path.dirname(__file__))
        filename = os.path.join(dir, "schema.xml")
        ZConfig.loadSchema(filename)


def test_suite():
    return unittest.makeSuite(TestConfiguration)

if __name__ == "__main__":
    try:
        __file__
    except NameError:
        import sys
        __file__ = sys.argv[0]
    unittest.main(defaultTest="test_suite")