(self)
| 3206 | super().test_append_write() |
| 3207 | |
| 3208 | def test_append_with_mode_rplus_success(self) -> None: |
| 3209 | original = Dataset({"foo": ("x", [1])}) |
| 3210 | modified = Dataset({"foo": ("x", [2])}) |
| 3211 | with self.create_zarr_target() as store: |
| 3212 | original.to_zarr(store, **self.version_kwargs) |
| 3213 | modified.to_zarr(store, mode="r+", **self.version_kwargs) |
| 3214 | with self.open(store) as actual: |
| 3215 | assert_identical(actual, modified) |
| 3216 | |
| 3217 | def test_append_with_mode_rplus_fails(self) -> None: |
| 3218 | original = Dataset({"foo": ("x", [1])}) |
nothing calls this directly
no test coverage detected