tests/test-ui-color.py
author Patrick Mezard <pmezard@gmail.com>
Sat, 12 Mar 2011 12:46:31 +0100
changeset 13584 02f507ce61f2
parent 12865 4c50552fc9bc
child 14516 842a9179132c
permissions -rw-r--r--
test-help: test a sample of 'templates' topic help

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