[Checkins] SVN: zope.interface/trunk/src/zope/interface/tests/test_odd_declarations.py - Fix a typo in documentation

Sidnei da Silva sidnei at enfoldsystems.com
Tue Jul 8 10:54:53 EDT 2008


Log message for revision 88118:
  - Fix a typo in documentation
  - Add a DocTestSuite for odd.py module, so their tests are run
  
  

Changed:
  U   zope.interface/trunk/src/zope/interface/tests/test_odd_declarations.py

-=-
Modified: zope.interface/trunk/src/zope/interface/tests/test_odd_declarations.py
===================================================================
--- zope.interface/trunk/src/zope/interface/tests/test_odd_declarations.py	2008-07-08 14:07:29 UTC (rev 88117)
+++ zope.interface/trunk/src/zope/interface/tests/test_odd_declarations.py	2008-07-08 14:54:52 UTC (rev 88118)
@@ -13,7 +13,7 @@
 ##############################################################################
 """Test interface declarations against ExtensionClass-like classes.
 
-These tests are to make sure we do something sane in the presense of
+These tests are to make sure we do something sane in the presence of
 classic ExtensionClass classes and instances.
 
 $Id$
@@ -195,8 +195,10 @@
 
 
 def test_suite():
+    from zope.testing import doctest
     suite = unittest.TestSuite()
     suite.addTest(unittest.makeSuite(Test))
+    suite.addTest(doctest.DocTestSuite(odd))
     return suite
 
 



More information about the Checkins mailing list