Show More
@@ -1,20 +1,23 | |||||
1 | # this is hack to make sure no escape characters are inserted into the output |
|
1 | # this is hack to make sure no escape characters are inserted into the output | |
2 | import os |
|
2 | import os | |
3 | if 'TERM' in os.environ: |
|
3 | if 'TERM' in os.environ: | |
4 | del os.environ['TERM'] |
|
4 | del os.environ['TERM'] | |
5 | import doctest |
|
5 | import doctest | |
6 |
|
6 | |||
7 | import mercurial.changelog |
|
7 | import mercurial.changelog | |
8 | doctest.testmod(mercurial.changelog) |
|
8 | doctest.testmod(mercurial.changelog) | |
9 |
|
9 | |||
10 | import mercurial.dagparser |
|
10 | import mercurial.dagparser | |
11 | doctest.testmod(mercurial.dagparser, optionflags=doctest.NORMALIZE_WHITESPACE) |
|
11 | doctest.testmod(mercurial.dagparser, optionflags=doctest.NORMALIZE_WHITESPACE) | |
12 |
|
12 | |||
13 | import mercurial.match |
|
13 | import mercurial.match | |
14 | doctest.testmod(mercurial.match) |
|
14 | doctest.testmod(mercurial.match) | |
15 |
|
15 | |||
|
16 | import mercurial.url | |||
|
17 | doctest.testmod(mercurial.url) | |||
|
18 | ||||
16 | import mercurial.encoding |
|
19 | import mercurial.encoding | |
17 | doctest.testmod(mercurial.encoding) |
|
20 | doctest.testmod(mercurial.encoding) | |
18 |
|
21 | |||
19 | import hgext.convert.cvsps |
|
22 | import hgext.convert.cvsps | |
20 | doctest.testmod(hgext.convert.cvsps) |
|
23 | doctest.testmod(hgext.convert.cvsps) |
General Comments 0
You need to be logged in to leave comments.
Login now