PyTest - Test Organization
You have a test module named
When you run pytest, what will happen?
test_math.py with this code:def test_multiply():
assert 2 * 3 == 5
When you run pytest, what will happen?
