##// END OF EJS Templates
merge with stable
merge with stable

File last commit:

r12165:b7fbf24c default
r12315:ca58f647 merge default
Show More
test-doctest.py
25 lines | 598 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
Matt Mackall
fix up a bunch of check-code warnings
r10413 import os
Patrick Mezard
test-doctest: remove TERM env variable only if it's there
r7078 if 'TERM' in os.environ:
Dirkjan Ochtman
clean up trailing spaces
r7184 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
Martin Geisler
match: add narrowmatcher class...
r12165 import mercurial.match
doctest.testmod(mercurial.match)
Peter Arrenbrecht
dagparser: parses and formats DAGs as concise text...
r11335 import mercurial.dagparser
Peter Arrenbrecht
debugbuilddag: build a changelog dag from a concise description...
r11337 doctest.testmod(mercurial.dagparser, optionflags=doctest.NORMALIZE_WHITESPACE)
Peter Arrenbrecht
dagparser: parses and formats DAGs as concise text...
r11335
Patrick Mezard
convert: fix builtin cvsps under Windows...
r7097 import hgext.convert.cvsps
doctest.testmod(hgext.convert.cvsps)