tests: Add tests for builtins: all, any, sum, abs.

pull/1144/head
Damien George 2015-03-02 17:21:10 +00:00
rodzic db1e10d5ea
commit 24ffb8e876
3 zmienionych plików z 38 dodań i 0 usunięć

Wyświetl plik

@ -0,0 +1,20 @@
# test builtin "all" and "any"
tests = (
(),
[],
[False],
[True],
[False, True],
[True, False],
[False, False],
[True, True],
(False for i in range(10)),
(True for i in range(10)),
)
for test in tests:
print(all(test))
for test in tests:
print(any(test))

Wyświetl plik

@ -0,0 +1,14 @@
# test builtin "sum"
tests = (
(),
[],
[0],
[1],
[0, 1, 2],
(i for i in range(10)),
)
for test in tests:
print(sum(test))
print(sum(test, -2))

Wyświetl plik

@ -26,3 +26,7 @@ print(1j / 2)
#print(1j / 2j) uPy doesn't print correctly
#print(1j ** 2) uPy doesn't print correctly
#print(1j ** 2j) uPy doesn't print correctly
# builtin abs
print(abs(1j))
print(abs(1j + 2))