##// END OF EJS Templates
test-doctest: test url.py again, removed by 7cc4263e07a9
Patrick Mezard -
r13194:b549ee32 default
parent child Browse files
Show More
@@ -1,20 +1,23
1 1 # this is hack to make sure no escape characters are inserted into the output
2 2 import os
3 3 if 'TERM' in os.environ:
4 4 del os.environ['TERM']
5 5 import doctest
6 6
7 7 import mercurial.changelog
8 8 doctest.testmod(mercurial.changelog)
9 9
10 10 import mercurial.dagparser
11 11 doctest.testmod(mercurial.dagparser, optionflags=doctest.NORMALIZE_WHITESPACE)
12 12
13 13 import mercurial.match
14 14 doctest.testmod(mercurial.match)
15 15
16 import mercurial.url
17 doctest.testmod(mercurial.url)
18
16 19 import mercurial.encoding
17 20 doctest.testmod(mercurial.encoding)
18 21
19 22 import hgext.convert.cvsps
20 23 doctest.testmod(hgext.convert.cvsps)
General Comments 0
You need to be logged in to leave comments. Login now