()
| 5558 | @requires_netCDF4 |
| 5559 | @requires_dask |
| 5560 | def test_open_mfdataset_can_open_path_objects() -> None: |
| 5561 | dataset = os.path.join(os.path.dirname(__file__), "data", "example_1.nc") |
| 5562 | with open_mfdataset(Path(dataset)) as actual: |
| 5563 | assert isinstance(actual, Dataset) |
| 5564 | |
| 5565 | |
| 5566 | @requires_netCDF4 |
nothing calls this directly
no test coverage detected
searching dependent graphs…