PyTest - Writing Assertions
What will happen when this test runs?
import pytest
def test_value_error():
with pytest.raises(ValueError):
int('abc')