Files
RustPython/extra_tests/snippets/builtin_all.py
2020-09-13 06:58:57 +09:00

11 lines
300 B
Python

from testutils import assert_raises
from testutils import TestFailingBool, TestFailingIter
assert all([True])
assert not all([False])
assert all([])
assert not all([False, TestFailingBool()])
assert_raises(RuntimeError, all, TestFailingIter())
assert_raises(RuntimeError, all, [TestFailingBool()])