diff --git a/testing/test_my_practice.py b/testing/test_my_practice.py new file mode 100644 index 00000000000..5cf5cc9eb3c --- /dev/null +++ b/testing/test_my_practice.py @@ -0,0 +1,12 @@ +from __future__ import annotations + +import pytest + + +def test_basic_math(): + assert 1 + 1 == 2 + + +def test_pytest_raises(): + with pytest.raises(ZeroDivisionError): + 1 / 0