5 lines
105 B
Python
5 lines
105 B
Python
import pytest
|
|
|
|
@pytest.mark.parametrize("x,y", [(1, 2), (3, 4)])
|
|
def test_add(x, y):
|
|
assert x + y > 0 |