tests/test-doctest.py
author Dongsheng Song <dongsheng.song@gmail.com>
Tue, 10 Feb 2009 13:57:34 +0800
changeset 7751 9294c0158c42
parent 7185 67ba74938b15
child 10413 e433002acb05
permissions -rw-r--r--
i18n: updated Chinese translation

# 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)