Ticket #10973: auto_doctest.diff
File auto_doctest.diff, 694 bytes (added by , 16 years ago) |
---|
-
simple.py
70 70 except ValueError: 71 71 # No doc tests in tests.py 72 72 pass 73 74 # Doctest the modules specified in doctest_modules 75 if hasattr(test_module, 'doctest_modules'): 76 for module in test_module.doctest_modules: 77 suite.addTest(doctest.DocTestSuite(module, 78 checker=doctestOutputChecker, 79 runner=DocTestRunner)) 73 80 return suite 74 81 75 82 def build_test(label):