Added all original pyside unit tests to the shiboken version.

This commit is contained in:
Hugo Lima 2009-09-21 14:51:26 -03:00
commit 9af36fbb64
160 changed files with 6616 additions and 12 deletions

12
tests/util/color.py Normal file
View file

@ -0,0 +1,12 @@
'''Function to print a colored line to terminal'''
RED='\033[0;31m%s\033[m'
def print_colored(message, color=RED):
print color % message
if __name__ == '__main__':
print '42 - the answer'
print_colored("But what's the question?")
print 'Hum?'