[Zope3-checkins] CVS: Zope3/src/zope/configuration/tests -
test_docutils.py:1.1
Stephan Richter
srichter at cosmos.phy.tufts.edu
Fri Jan 23 12:00:33 EST 2004
Update of /cvs-repository/Zope3/src/zope/configuration/tests
In directory cvs.zope.org:/tmp/cvs-serv24998/src/zope/configuration/tests
Added Files:
test_docutils.py
Log Message:
I had a little bug in my text wrapper. I added a doc test for it now and
updated the generated ZCML reference.
=== Added File Zope3/src/zope/configuration/tests/test_docutils.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.
#
##############################################################################
"""XXX short summary goes here.
$Id: test_docutils.py,v 1.1 2004/01/23 17:00:32 srichter Exp $
"""
import unittest
from zope.testing.doctestunit import DocTestSuite
def test_suite():
return unittest.TestSuite((
DocTestSuite('zope.configuration.docutils'),
))
if __name__ == '__main__': unittest.main()
More information about the Zope3-Checkins
mailing list