##// END OF EJS Templates
convert: fix builtin cvsps under Windows...
convert: fix builtin cvsps under Windows Drafted and reviewed by Frank Kingswood <frank@kingswood-consulting.co.uk>.

File last commit:

r7097:d4218edd default
r7097:d4218edd default
Show More
test-doctest.py
19 lines | 436 B | text/x-python | PythonLexer
Mads Kiilerich
tests: fix readline escape characters in output for test-doctest.py
r7041 # this is hack to make sure no escape characters are inserted into the output
Patrick Mezard
test-doctest: remove TERM env variable only if it's there
r7078 import os;
if 'TERM' in os.environ:
del os.environ['TERM']
Benoit Boissinot
[extendedchangelog] encode/decode function...
r3232 import doctest
import mercurial.changelog
# test doctest from changelog
doctest.testmod(mercurial.changelog)
Alexis S. L. Carvalho
httprepo: quote the path part of the URL...
r5066 import mercurial.httprepo
doctest.testmod(mercurial.httprepo)
Manuel Holtgrewe
Do not display passwords with pull/push/incoming/outgoing...
r5525
import mercurial.util
doctest.testmod(mercurial.util)
Patrick Mezard
convert: fix builtin cvsps under Windows...
r7097
import hgext.convert.cvsps
doctest.testmod(hgext.convert.cvsps)