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