##// 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 3 import doctest
2 4
3 5 import mercurial.changelog
4 6 # test doctest from changelog
5 7
6 8 doctest.testmod(mercurial.changelog)
7 9
8 10 import mercurial.httprepo
9 11 doctest.testmod(mercurial.httprepo)
10 12
11 13 import mercurial.util
12 14 doctest.testmod(mercurial.util)
General Comments 0
You need to be logged in to leave comments. Login now