(self)
| 1591 | assert ds.x.encoding == {} |
| 1592 | |
| 1593 | def test_append_write(self) -> None: |
| 1594 | # regression for GH1215 |
| 1595 | data = create_test_data() |
| 1596 | with self.roundtrip_append(data) as actual: |
| 1597 | assert_identical(data, actual) |
| 1598 | |
| 1599 | def test_append_overwrite_values(self) -> None: |
| 1600 | # regression for GH1215 |
nothing calls this directly
no test coverage detected