Files
courses/py3interm/EXAMPLES/pytests/test_assertions.py
T
2025-05-20 11:57:43 -04:00

6 lines
96 B
Python

#!/usr/bin/env python
import pytest
def test_two_plus_two_equals_four():
assert 2 + 2 == 4