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