##// END OF EJS Templates
tests: fix readline escape characters in output for test-doctest.py
Mads Kiilerich -
r7041:b8560714 default
parent child Browse files
Show More
@@ -1,12 +1,14 b''
1 # this is hack to make sure no escape characters are inserted into the output
2 import os; del os.environ['TERM']
1 import doctest
3 import doctest
2
4
3 import mercurial.changelog
5 import mercurial.changelog
4 # test doctest from changelog
6 # test doctest from changelog
5
7
6 doctest.testmod(mercurial.changelog)
8 doctest.testmod(mercurial.changelog)
7
9
8 import mercurial.httprepo
10 import mercurial.httprepo
9 doctest.testmod(mercurial.httprepo)
11 doctest.testmod(mercurial.httprepo)
10
12
11 import mercurial.util
13 import mercurial.util
12 doctest.testmod(mercurial.util)
14 doctest.testmod(mercurial.util)
General Comments 0
You need to be logged in to leave comments. Login now