(self, path, **kwargs)
| 494 | |
| 495 | @contextlib.contextmanager |
| 496 | def open(self, path, **kwargs): |
| 497 | with open_dataset(path, engine=self.engine, **kwargs) as ds: |
| 498 | yield ds |
| 499 | |
| 500 | def test_zero_dimensional_variable(self) -> None: |
| 501 | expected = create_test_data() |
no test coverage detected