(self)
| 1133 | assert not data1.identical(data2) |
| 1134 | |
| 1135 | def test_attrs(self) -> None: |
| 1136 | data = create_test_data(seed=42) |
| 1137 | data.attrs = {"foobar": "baz"} |
| 1138 | assert data.attrs["foobar"], "baz" |
| 1139 | assert isinstance(data.attrs, dict) |
| 1140 | |
| 1141 | def test_chunks_does_not_load_data(self) -> None: |
| 1142 | # regression test for GH6538 |
nothing calls this directly
no test coverage detected