tests/test-ui-color.py
author Martin Geisler <mg@aragost.com>
Wed, 06 Apr 2011 16:21:12 +0200
changeset 13899 a7cd0eee396b
parent 12865 4c50552fc9bc
child 14516 842a9179132c
permissions -rw-r--r--
commit: note when files are missing Before, you could experience the following strange interaction: $ hg commit nothing changed $ hg merge abort: outstanding uncommitted changes which confused at least one user in #mercurial.

from hgext import color

# ensure errors aren't buffered
testui = color.colorui()
testui.pushbuffer()
testui.write('buffered\n')
testui.warn('warning\n')
testui.write_err('error\n')
print repr(testui.popbuffer())