##// END OF EJS Templates
keyword: switch kwtemplater.record in kw_dorecord()...
keyword: switch kwtemplater.record in kw_dorecord() Obsoletes the need for a global recordcommands variable.

File last commit:

r12595:0f83a402 merge default
r12631:7b34fdff default
Show More
test-doctest.py
20 lines | 502 B | text/x-python | PythonLexer
# 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
doctest.testmod(mercurial.changelog)
import mercurial.dagparser
doctest.testmod(mercurial.dagparser, optionflags=doctest.NORMALIZE_WHITESPACE)
import mercurial.match
doctest.testmod(mercurial.match)
import mercurial.url
doctest.testmod(mercurial.url)
import hgext.convert.cvsps
doctest.testmod(hgext.convert.cvsps)