6 lines
104 B
Python
6 lines
104 B
Python
def test_exception_syntax():
|
|
try:
|
|
0 / 0
|
|
except ZeroDivisionError as e:
|
|
assert e
|