()
| 7721 | @requires_zarr |
| 7722 | @pytest.mark.usefixtures("default_zarr_format") |
| 7723 | def test_zarr_closing_internal_zip_store(): |
| 7724 | store_name = "tmp.zarr.zip" |
| 7725 | original_da = DataArray(np.arange(12).reshape((3, 4))) |
| 7726 | original_da.to_zarr(store_name, mode="w") |
| 7727 | |
| 7728 | with open_dataarray(store_name, engine="zarr") as loaded_da: |
| 7729 | assert_identical(original_da, loaded_da) |
| 7730 | |
| 7731 | |
| 7732 | @requires_zarr |
nothing calls this directly
no test coverage detected
searching dependent graphs…