master
/ miniconda3 / lib / python3.11 / site-packages / toolz / tests / test_utils.py

test_utils.py @74036c5 raw · history · blame

1
2
3
4
5
6
from toolz.utils import raises


def test_raises():
    assert raises(ZeroDivisionError, lambda: 1 / 0)
    assert not raises(ZeroDivisionError, lambda: 1)