summaryrefslogtreecommitdiff
path: root/app/tests.py
blob: 3c8dd579186e5b2f2ded6e29da0d1726d983f487 (plain)
1
2
3
4
5
6
7
8
9
10
11
"""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