(self)
| 375 | |
| 376 | class TestCheckShapeTileIDs: |
| 377 | def test_check_depths(self): |
| 378 | ds = create_test_data(0) |
| 379 | combined_tile_ids = {(0,): ds, (0, 1): ds} |
| 380 | with pytest.raises( |
| 381 | ValueError, match=r"sub-lists do not have consistent depths" |
| 382 | ): |
| 383 | _check_shape_tile_ids(combined_tile_ids) |
| 384 | |
| 385 | def test_check_lengths(self): |
| 386 | ds = create_test_data(0) |
nothing calls this directly
no test coverage detected