tests: Add tests for builtins: all, any, sum, abs.
This commit is contained in:
parent
db1e10d5ea
commit
24ffb8e876
20
tests/basics/builtin_allany.py
Normal file
20
tests/basics/builtin_allany.py
Normal 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))
|
14
tests/basics/builtin_sum.py
Normal file
14
tests/basics/builtin_sum.py
Normal 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))
|
@ -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))
|
||||
|
Loading…
Reference in New Issue
Block a user