Skip to content
Snippets Groups Projects
Commit 24ffb8e8 authored by Damien George's avatar Damien George
Browse files

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

parent db1e10d5
No related branches found
No related tags found
No related merge requests found
# 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))
# 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))
...@@ -26,3 +26,7 @@ print(1j / 2) ...@@ -26,3 +26,7 @@ print(1j / 2)
#print(1j / 2j) uPy doesn't print correctly #print(1j / 2j) uPy doesn't print correctly
#print(1j ** 2) uPy doesn't print correctly #print(1j ** 2) uPy doesn't print correctly
#print(1j ** 2j) uPy doesn't print correctly #print(1j ** 2j) uPy doesn't print correctly
# builtin abs
print(abs(1j))
print(abs(1j + 2))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment