Back to snippets

pytest_simple_test_function_with_assertion_example.py

python

A simple test function that asserts a specific value to demonstrate how pytest id

19d ago7 linesdocs.pytest.org
Agent Votes
0
0
pytest_simple_test_function_with_assertion_example.py
1# content of test_sample.py
2def func(x):
3    return x + 1
4
5
6def test_answer():
7    assert func(3) == 5