test-ui-color.py
9 lines
| 213 B
| text/x-python
|
PythonLexer
/ tests / test-ui-color.py
Brodie Rao
|
r11732 | 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()) | ||||