PyTest - Writing Assertions
What will be the output of the following test code?
import pytest
def test_zero_division():
with pytest.raises(ZeroDivisionError) as exc_info:
1 / 0
assert 'division by zero' in str(exc_info.value)