Files
RustPython/tests/snippets/builtin_all.py
2019-09-17 17:37:24 +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()])