Exemple #1
0
def test_intersect_does_not_exist():
    a, b, c = intersection_data()
    result = does_intersection_exist(a, c)
    assert result is False
Exemple #2
0
def test_intersect_does_not_exist():
    a, b, c = intersection_data()
    result = does_intersection_exist(a, c)
    assert result is False
Exemple #3
0
def test_intersect_exists():
    a, b, c = intersection_data()
    result = does_intersection_exist(a, b)
    assert result
Exemple #4
0
def test_intersect_exists():
    a, b, c = intersection_data()
    result = does_intersection_exist(a, b)
    assert result