[Checkins] SVN: zope.formlib/branches/faassen-zaf/src/zope/formlib/tests/test_widgetdocs.py Port over the last of the tests.

Martijn Faassen faassen at startifact.com
Sat Jan 2 13:47:24 EST 2010


Log message for revision 107568:
  Port over the last of the tests.
  

Changed:
  A   zope.formlib/branches/faassen-zaf/src/zope/formlib/tests/test_widgetdocs.py

-=-
Copied: zope.formlib/branches/faassen-zaf/src/zope/formlib/tests/test_widgetdocs.py (from rev 107495, zope.app.form/branches/faassen-zaf/src/zope/app/form/browser/tests/test_widgetdocs.py)
===================================================================
--- zope.formlib/branches/faassen-zaf/src/zope/formlib/tests/test_widgetdocs.py	                        (rev 0)
+++ zope.formlib/branches/faassen-zaf/src/zope/formlib/tests/test_widgetdocs.py	2010-01-02 18:47:23 UTC (rev 107568)
@@ -0,0 +1,24 @@
+##############################################################################
+#
+# Copyright (c) 2001, 2002 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.
+#
+##############################################################################
+"""Generic Text Widgets tests
+
+$Id$
+"""
+import unittest
+from doctest import DocTestSuite
+
+def test_suite():
+    suite = unittest.TestSuite()
+    suite.addTest(DocTestSuite("zope.formlib.textwidgets"))
+    return suite



More information about the checkins mailing list