[Checkins] SVN: z3c.pt/trunk/src/z3c/pt/tests/test_doctests.py Added expressions module to test case (left out by mistaken).

Malthe Borch mborch at gmail.com
Tue Oct 14 10:36:04 EDT 2008


Log message for revision 92194:
  Added expressions module to test case (left out by mistaken).

Changed:
  U   z3c.pt/trunk/src/z3c/pt/tests/test_doctests.py

-=-
Modified: z3c.pt/trunk/src/z3c/pt/tests/test_doctests.py
===================================================================
--- z3c.pt/trunk/src/z3c/pt/tests/test_doctests.py	2008-10-14 12:32:15 UTC (rev 92193)
+++ z3c.pt/trunk/src/z3c/pt/tests/test_doctests.py	2008-10-14 14:36:03 UTC (rev 92194)
@@ -16,14 +16,21 @@
 
 def test_suite():
     filesuites = 'README.txt',
-
+    testsuites = 'z3c.pt.expressions',
+    
     config.DISK_CACHE = False
     
     return unittest.TestSuite(
         [zope.testing.doctest.DocFileSuite(
         doctest, optionflags=OPTIONFLAGS,
         setUp=setUp, tearDown=zope.component.testing.tearDown,
-        package="z3c.pt") for doctest in filesuites]
+        package="z3c.pt") for doctest in filesuites] + \
+        
+        [zope.testing.doctest.DocTestSuite(
+        doctest, optionflags=OPTIONFLAGS,
+        setUp=setUp, tearDown=zope.component.testing.tearDown) \
+         for doctest in testsuites]
+        
         )
 
 if __name__ == '__main__':



More information about the Checkins mailing list