PyTest - Test Organization
What is wrong with this pytest code if the goal is to group tests inside a class named
TestMath?
class TestMath:
def test_add():
assert 1 + 1 == 2
def test_subtract(self):
assert 2 - 1 == 1
