(self)
| 4114 | class TestZarrDictStore(ZarrBase): |
| 4115 | @contextlib.contextmanager |
| 4116 | def create_zarr_target(self): |
| 4117 | if has_zarr_v3: |
| 4118 | yield zarr.storage.MemoryStore({}, read_only=False) |
| 4119 | else: |
| 4120 | yield {} |
| 4121 | |
| 4122 | def test_chunk_key_encoding_v2(self) -> None: |
| 4123 | encoding = {"name": "v2", "configuration": {"separator": "/"}} |
no outgoing calls
no test coverage detected