(self)
| 506 | assert_identical(expected, actual) |
| 507 | |
| 508 | def test_write_store(self) -> None: |
| 509 | expected = create_test_data() |
| 510 | with self.create_store() as store: |
| 511 | expected.dump_to_store(store) |
| 512 | # we need to cf decode the store because it has time and |
| 513 | # non-dimension coordinates |
| 514 | with xr.decode_cf(store) as actual: |
| 515 | assert_allclose(expected, actual) |
| 516 | |
| 517 | def check_dtypes_roundtripped(self, expected, actual): |
| 518 | for k in expected.variables: |
nothing calls this directly
no test coverage detected