fab634e3ee
This introduces a skip_if module that can be used by tests to determine when they should be skipped due to the environment. Some tests have been split in order to have finer grained skip control.
22 lines
310 B
Python
22 lines
310 B
Python
# test builtin print function
|
|
|
|
print("break the test")
|
|
print()
|
|
print(None)
|
|
print('')
|
|
print(1)
|
|
print(1, 2)
|
|
|
|
print(sep='')
|
|
print(sep='x')
|
|
print(end='')
|
|
print(end='x\n')
|
|
print(1, sep='')
|
|
print(1, end='')
|
|
print(1, sep='', end='')
|
|
print(1, 2, sep='')
|
|
print(1, 2, end='')
|
|
print(1, 2, sep='', end='')
|
|
|
|
print([{1:2}])
|