base_django/app/tests.py
2023-10-21 11:56:07 -03:00

12 lines
209 B
Python

"""Mock test to test pytest."""
def inc(number: int) -> int:
"""Mock test to test pytest."""
return number + 1
def test_answer() -> None:
"""Mock test to test pytest."""
assert inc(3) == 4