PyTest - Parametrize
What will be the output when running this pytest code?
import pytest
@pytest.mark.parametrize('x,y', [(1,2), (3,4)])
def test_sum(x, y):
assert x + y == 3