def test_sum(self):
     result = first_module.sum(1, 1)
     assert 2 == result
def test_multiple_sums(x, y):
    print(x, y)
    assert x + y == first_module.sum(x, y)