()
| 343 | |
| 344 | |
| 345 | def test_relate_pattern_incorrect_length(): |
| 346 | with pytest.raises(shapely.GEOSException, match="Should be length 9"): |
| 347 | shapely.relate_pattern(point, polygon, "**") |
| 348 | |
| 349 | with pytest.raises(shapely.GEOSException, match="Should be length 9"): |
| 350 | shapely.relate_pattern(point, polygon, "**********") |
| 351 | |
| 352 | |
| 353 | @pytest.mark.parametrize("pattern", [b"*********", 10, None]) |
nothing calls this directly
no test coverage detected
searching dependent graphs…