[Checkins] SVN: zope.hookable/trunk/src/zope/hookable/tests/test_hookable.py Ensure tests pass on Python 2.4 - 2.6.

Tres Seaver tseaver at palladion.com
Wed Mar 4 22:26:48 EST 2009


Log message for revision 97509:
  Ensure tests pass on Python 2.4 - 2.6.

Changed:
  U   zope.hookable/trunk/src/zope/hookable/tests/test_hookable.py

-=-
Modified: zope.hookable/trunk/src/zope/hookable/tests/test_hookable.py
===================================================================
--- zope.hookable/trunk/src/zope/hookable/tests/test_hookable.py	2009-03-05 02:41:32 UTC (rev 97508)
+++ zope.hookable/trunk/src/zope/hookable/tests/test_hookable.py	2009-03-05 03:26:48 UTC (rev 97509)
@@ -16,10 +16,14 @@
 $Id$
 """
 
+from zope.testing.doctest import ELLIPSIS
+from zope.testing.doctest import IGNORE_EXCEPTION_DETAIL
 from zope.testing.doctestunit import DocTestSuite
 
 def test_suite():
-    return DocTestSuite('zope.hookable')
+    return DocTestSuite('zope.hookable',
+                        optionflags=ELLIPSIS|IGNORE_EXCEPTION_DETAIL,
+                       )
 
 if __name__ == '__main__':
     import unittest



More information about the Checkins mailing list