Mercurial > hg
view tests/test-doctest.py @ 12019:456f0fed8f17
contrib/compress: use store API instead of a collector
author | Benoit Boissinot <benoit.boissinot@ens-lyon.org> |
---|---|
date | Sun, 22 Aug 2010 19:13:30 +0200 |
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)