##// END OF EJS Templates
tests: make test-doctest.t module list match reality...
Kyle Lippincott -
r45054:529cb231 default
parent child Browse files
Show More
@@ -49,14 +49,11 b' def testmod(name, optionflags=0, testtar'
49 runner.summarize()
49 runner.summarize()
50
50
51
51
52 testmod('mercurial.changegroup')
53 testmod('mercurial.changelog')
52 testmod('mercurial.changelog')
54 testmod('mercurial.cmdutil')
53 testmod('mercurial.cmdutil')
55 testmod('mercurial.color')
54 testmod('mercurial.color')
56 testmod('mercurial.config')
55 testmod('mercurial.config')
57 testmod('mercurial.context')
58 testmod('mercurial.dagparser', optionflags=doctest.NORMALIZE_WHITESPACE)
56 testmod('mercurial.dagparser', optionflags=doctest.NORMALIZE_WHITESPACE)
59 testmod('mercurial.dispatch')
60 testmod('mercurial.encoding')
57 testmod('mercurial.encoding')
61 testmod('mercurial.fancyopts')
58 testmod('mercurial.fancyopts')
62 testmod('mercurial.formatter')
59 testmod('mercurial.formatter')
@@ -65,23 +62,21 b" testmod('mercurial.hgweb.hgwebdir_mod')"
65 testmod('mercurial.match')
62 testmod('mercurial.match')
66 testmod('mercurial.mdiff')
63 testmod('mercurial.mdiff')
67 testmod('mercurial.minirst')
64 testmod('mercurial.minirst')
65 testmod('mercurial.parser')
68 testmod('mercurial.patch')
66 testmod('mercurial.patch')
69 testmod('mercurial.pathutil')
67 testmod('mercurial.pathutil')
70 testmod('mercurial.parser')
71 testmod('mercurial.pycompat')
68 testmod('mercurial.pycompat')
72 testmod('mercurial.revlog')
73 testmod('mercurial.revlogutils.deltas')
69 testmod('mercurial.revlogutils.deltas')
74 testmod('mercurial.revset')
70 testmod('mercurial.revset')
75 testmod('mercurial.revsetlang')
71 testmod('mercurial.revsetlang')
72 testmod('mercurial.simplemerge')
76 testmod('mercurial.smartset')
73 testmod('mercurial.smartset')
77 testmod('mercurial.store')
74 testmod('mercurial.store')
78 testmod('mercurial.subrepo')
75 testmod('mercurial.subrepo')
79 testmod('mercurial.templatefilters')
80 testmod('mercurial.templater')
76 testmod('mercurial.templater')
81 testmod('mercurial.ui')
77 testmod('mercurial.ui')
82 testmod('mercurial.url')
83 testmod('mercurial.util')
78 testmod('mercurial.util')
84 testmod('mercurial.util', testtarget='platform')
79 testmod('mercurial.util', testtarget='platform') # windows.py or posix.py
85 testmod('mercurial.utils.dateutil')
80 testmod('mercurial.utils.dateutil')
86 testmod('mercurial.utils.stringutil')
81 testmod('mercurial.utils.stringutil')
87 testmod('hgext.convert.convcmd')
82 testmod('hgext.convert.convcmd')
@@ -93,3 +88,7 b" testmod('hgext.fix')"
93 testmod('hgext.mq')
88 testmod('hgext.mq')
94 # Helper scripts in tests/ that have doctests:
89 # Helper scripts in tests/ that have doctests:
95 testmod('drawdag')
90 testmod('drawdag')
91 testmod('test-run-tests')
92
93 # Disabled since it requires extra modules that might not be installed.
94 # testmod('i18n.check-translation')
General Comments 0
You need to be logged in to leave comments. Login now