(self, create_combined_ids)
| 294 | assert _new_tile_id((old_id, ds)) == new_id |
| 295 | |
| 296 | def test_get_new_tile_ids(self, create_combined_ids): |
| 297 | shape = (1, 2, 3) |
| 298 | combined_ids = create_combined_ids(shape) |
| 299 | |
| 300 | expected_tile_ids = sorted(combined_ids.keys()) |
| 301 | actual_tile_ids = _create_tile_ids(shape) |
| 302 | assert expected_tile_ids == actual_tile_ids |
| 303 | |
| 304 | |
| 305 | class TestCombineND: |
nothing calls this directly
no test coverage detected