def test_assert_almost_equal_negative_with_delta(combination): a, b, delta = combination with pytest.raises(AssertionError): slash.assert_almost_equal(a, b, delta)
def test_assert_almost_equal_positive_with_delta(combination): a, b, delta = combination slash.assert_almost_equal(a, b, delta)
def test_assert_almost_equal_positive(pair): a, b = pair slash.assert_almost_equal(a, b)