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

This commit is contained in:
Damien George
2015-03-02 17:21:10 +00:00
parent db1e10d5ea
commit 24ffb8e876
3 changed files with 38 additions and 0 deletions

View File

@@ -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))

View File

@@ -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))