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

11 lines
315 B
Python

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