Mercurial > hg-stable
view tests/test-doctest.py @ 7097:d4218edd55bd
convert: fix builtin cvsps under Windows
Drafted and reviewed by Frank Kingswood <frank@kingswood-consulting.co.uk>.
author | Patrick Mezard <pmezard@gmail.com> |
---|---|
date | Mon, 13 Oct 2008 17:31:03 +0100 |
parents | 967adcf5910d |
children | 67ba74938b15 |
line wrap: on
line source
# this is hack to make sure no escape characters are inserted into the output import os; if 'TERM' in os.environ: del os.environ['TERM'] import doctest import mercurial.changelog # test doctest from changelog doctest.testmod(mercurial.changelog) import mercurial.httprepo doctest.testmod(mercurial.httprepo) import mercurial.util doctest.testmod(mercurial.util) import hgext.convert.cvsps doctest.testmod(hgext.convert.cvsps)