(self)
| 1139 | assert isinstance(data.attrs, dict) |
| 1140 | |
| 1141 | def test_chunks_does_not_load_data(self) -> None: |
| 1142 | # regression test for GH6538 |
| 1143 | store = InaccessibleVariableDataStore() |
| 1144 | create_test_data().dump_to_store(store) |
| 1145 | ds = open_dataset(store) |
| 1146 | assert ds.chunks == {} |
| 1147 | |
| 1148 | @requires_dask |
| 1149 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected