[Zope3-checkins] CVS: Zope3/src/zope/app/component/tests -
test_service.py:1.1.4.1
Jim Fulton
jim at zope.com
Mon Aug 4 12:34:29 EDT 2003
Update of /cvs-repository/Zope3/src/zope/app/component/tests
In directory cvs.zope.org:/tmp/cvs-serv26080/src/zope/app/component/tests
Added Files:
Tag: zcml-interface-field-branch
test_service.py
Log Message:
Provides some initial machinery for creatiing and setting up global
service managers. Someday, there might be multiple global service
managers per process.
=== Added File Zope3/src/zope/app/component/tests/test_service.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 service support
$Id: test_service.py,v 1.1.4.1 2003/08/04 15:34:24 jim Exp $
"""
import unittest
from zope.testing.doctestunit import DocTestSuite
def test_suite():
return unittest.TestSuite((
DocTestSuite('zope.app.component.service'),
))
if __name__ == '__main__': unittest.main()
More information about the Zope3-Checkins
mailing list