PyTest - Parametrize
What will be the output of this pytest test?
import pytest
@pytest.mark.parametrize('a,b', [(2, 3), (4, 5)])
def test_product(a, b):
assert a * b == 6