PyTest - Test Organization
What will be the output when running this pytest code?
class TestExample:
def test_one(self):
assert 1 + 1 == 2
def test_two(self):
assert 2 * 2 == 5