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

Jim Fulton jim at zope.com
Mon Aug 4 12:34:20 EDT 2003


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

Added Files:
      Tag: zcml-interface-field-branch
	test_configuration.py 
Log Message:
Provide an application-server specific configuration context that
provides access to services.

Provided an interface field that handles already-registered interfaces
as well as resolveable interfaces, which it registers.


=== Added File Zope3/src/zope/app/tests/test_configuration.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 the application-server configuration extensions

$Id: test_configuration.py,v 1.1.2.1 2003/08/04 15:34:16 jim Exp $
"""
import unittest
from zope.testing.doctestunit import DocTestSuite

def test_suite():
    return unittest.TestSuite((
        DocTestSuite('zope.app.configuration'),
        ))

if __name__ == '__main__': unittest.main()




More information about the Zope3-Checkins mailing list