607-pytest

https://pypi.org/project/pytest/

The pytest framework makes it easy to write small tests, yet scales to support complex functional testing for applications and libraries.

1
2
3
4
5
6
7
# content of test_sample.py
def inc(x):
    return x + 1


def test_answer():
    assert inc(3) == 5