tests/test-ui-color.py
author Martin Geisler <mg@aragost.com>
Thu, 24 Feb 2011 15:35:22 +0100
branchstable
changeset 13470 64ce09e93aff
parent 12865 4c50552fc9bc
child 14516 842a9179132c
permissions -rw-r--r--
commands: mark strings for translation

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