mirror of
https://github.com/aykhans/AzSuicideDataVisualization.git
synced 2025-04-22 02:23:48 +00:00
7 lines
156 B
Python
7 lines
156 B
Python
from toolz.utils import raises
|
|
|
|
|
|
def test_raises():
|
|
assert raises(ZeroDivisionError, lambda: 1 / 0)
|
|
assert not raises(ZeroDivisionError, lambda: 1)
|