Files
RustPython/tests/snippets/builtin_any.py
2019-05-09 15:54:07 +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()]))