6 lines
156 B
Python
6 lines
156 B
Python
from toolz.utils import raises
|
|
|
|
|
|
def test_raises():
|
|
assert raises(ZeroDivisionError, lambda: 1 / 0)
|
|
assert not raises(ZeroDivisionError, lambda: 1)
|