tests/test-doctest.py
author Tobias Bell <tobias.bell@gmail.com>
Wed, 01 Apr 2009 21:06:12 +0200
changeset 7938 b08be68bbc4f
parent 7185 67ba74938b15
child 10413 e433002acb05
permissions -rw-r--r--
i18n-de: removed fuzzy translations after update of POT file

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