[Checkins] SVN: Sandbox/ulif/ZConfigParser/ZConfigParser/tests/test_parser.py Register new tests.

Uli Fouquet uli at gnufix.de
Sun Apr 12 06:53:02 EDT 2009


Log message for revision 99139:
  Register new tests.

Changed:
  A   Sandbox/ulif/ZConfigParser/ZConfigParser/tests/test_parser.py

-=-
Added: Sandbox/ulif/ZConfigParser/ZConfigParser/tests/test_parser.py
===================================================================
--- Sandbox/ulif/ZConfigParser/ZConfigParser/tests/test_parser.py	                        (rev 0)
+++ Sandbox/ulif/ZConfigParser/ZConfigParser/tests/test_parser.py	2009-04-12 10:53:01 UTC (rev 99139)
@@ -0,0 +1,27 @@
+##############################################################################
+#
+# Copyright (c) 2009 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.1 (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 driver for ZConfigParser.parser.
+
+"""
+__docformat__ = "reStructuredText"
+
+try:
+    from zope.testing import doctest
+except ImportError:
+    import doctest
+
+
+def test_suite():
+    return doctest.DocFileSuite("parser.txt", package="ZConfigParser")



More information about the Checkins mailing list