test-doctest.py
19 lines
| 435 B
| text/x-python
|
PythonLexer
/ tests / test-doctest.py
Mads Kiilerich
|
r7041 | # this is hack to make sure no escape characters are inserted into the output | ||
Patrick Mezard
|
r7078 | import os; | ||
if 'TERM' in os.environ: | ||||
Dirkjan Ochtman
|
r7184 | del os.environ['TERM'] | ||
Benoit Boissinot
|
r3232 | import doctest | ||
import mercurial.changelog | ||||
# test doctest from changelog | ||||
doctest.testmod(mercurial.changelog) | ||||
Alexis S. L. Carvalho
|
r5066 | import mercurial.httprepo | ||
doctest.testmod(mercurial.httprepo) | ||||
Manuel Holtgrewe
|
r5525 | |||
import mercurial.util | ||||
doctest.testmod(mercurial.util) | ||||
Patrick Mezard
|
r7097 | |||
import hgext.convert.cvsps | ||||
doctest.testmod(hgext.convert.cvsps) | ||||