aboutsummaryrefslogtreecommitdiff
blob: 6f6dec24cdd6d2cde7a112d30f5f434bbc9eb7db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
diff -ur manuel-1.6.0.orig/src/manuel/tests.py manuel-1.6.0/src/manuel/tests.py
--- src/manuel/tests.py	2012-04-17 03:08:54.000000000 +0800
+++ src/manuel/tests.py	2012-05-21 20:43:20.981722893 +0800
@@ -9,16 +9,17 @@
 import os.path
 import re
 import unittest
-import zope.testing.renormalizing
 
 doctest = manuel.absolute_import('doctest')
 
 here = os.path.dirname(os.path.abspath(__file__))
 
-checker = zope.testing.renormalizing.RENormalizing([
+try:
+    checker = zope.testing.renormalizing.RENormalizing([
     (re.compile(r"<unittest\.result\.TestResult"), '<unittest.TestResult'),
     ])
-
+except:
+    pass
 
 def turtle_on_the_bottom_test():
     """We use manuel to test itself.
@@ -52,7 +53,6 @@
     optionflags = doctest.NORMALIZE_WHITESPACE | doctest.ELLIPSIS
 
     m = manuel.ignore.Manuel()
-    m += manuel.doctest.Manuel(optionflags=optionflags, checker=checker)
     m += manuel.codeblock.Manuel()
     m += manuel.capture.Manuel()
     m += manuel.testcase.SectionManuel()
@@ -66,3 +66,6 @@
         suite,
         doctest.DocTestSuite(),
         ))
+
+if __name__ == '__main__':
+    unittest.TextTestRunner().run(test_suite())
diff -ur manuel-1.6.0.orig/src/manuel/index.txt manuel-1.6.0/src/manuel/index.txt
--- src/manuel/index.txt        2012-04-17 03:08:54.000000000 +0800
+++ src/manuel/index.txt        2012-04-28 05:43:26.918993769 +0800
@@ -166,16 +166,16 @@

 .. code-block:: python

-     import os.path
-     import manuel.testing
+    import os.path
+    import manuel.testing

-     class StripDirsTestCase(manuel.testing.TestCase):
-         def shortDescription(self):
+    class StripDirsTestCase(manuel.testing.TestCase):
+        def shortDescription(self):
              return os.path.basename(str(self))
-     suite = manuel.testing.TestSuite(
-         m, path_to_test, TestCase=StripDirsTestCase)
+    suite = manuel.testing.TestSuite(
+        m, path_to_test, TestCase=StripDirsTestCase)

-    >>> list(suite)[0].shortDescription()
+    list(suite)[0].shortDescription()
     'bugs.txt'