Mercurial > hg
view tests/test-doctest.py @ 11575:a5903e612f07
mq: evaluate --user before invoking editor with -e (issue2289)
author | Brendan Cully <brendan@kublai.com> |
---|---|
date | Thu, 15 Jul 2010 10:41:41 -0700 |
parents | 0f3c8a47960e |
children | b7fbf24c8a93 bb324910e40a |
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 mercurial.dagparser doctest.testmod(mercurial.dagparser, optionflags=doctest.NORMALIZE_WHITESPACE) import hgext.convert.cvsps doctest.testmod(hgext.convert.cvsps)