Added all original pyside unit tests to the shiboken version.
This commit is contained in:
parent
aa12538d63
commit
9af36fbb64
160 changed files with 6616 additions and 12 deletions
12
tests/util/color.py
Normal file
12
tests/util/color.py
Normal 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?'
|
||||
Loading…
Add table
Add a link
Reference in a new issue