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