Back to snippets
pytest_simple_test_function_with_assertion_example.py
pythonA simple test function that asserts a specific value to demonstrate how pytest id
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