tests/basics: Add more tuple tests to improve coverage testing.

This commit is contained in:
Damien George
2016-08-15 10:46:02 +10:00
parent 2196799051
commit 3c82d1d34b
3 changed files with 22 additions and 0 deletions

View File

@@ -10,3 +10,9 @@ for i in (-4, -2, 0, 2, 4):
a = (1, 2, 3)
c = a * 3
print(a, c)
# unsupported type on RHS
try:
() * None
except TypeError:
print('TypeError')