()
| 324 | |
| 325 | |
| 326 | def test_transform_check_shape(): |
| 327 | def remove_coord(arr): |
| 328 | return arr[:-1] |
| 329 | |
| 330 | with pytest.raises(ValueError): |
| 331 | transform(linear_ring, remove_coord) |
| 332 | |
| 333 | |
| 334 | def test_transform_correct_coordinate_dimension(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…