(self)
| 2524 | assert_identical(roundtrip, original) |
| 2525 | |
| 2526 | def test_roundtrip_via_bytes(self) -> None: |
| 2527 | original = create_test_data() |
| 2528 | result = bytes(original.to_netcdf(engine=self.engine)) |
| 2529 | roundtrip = load_dataset(result, engine=self.engine) |
| 2530 | assert_identical(roundtrip, original) |
| 2531 | |
| 2532 | def test_pickle_open_dataset_from_bytes(self) -> None: |
| 2533 | original = Dataset({"foo": ("x", [1, 2, 3])}) |
nothing calls this directly
no test coverage detected