(self, **kwargs)
| 6661 | assert_equal(actual, expected) |
| 6662 | |
| 6663 | def create_dap4_dataset(self, **kwargs): |
| 6664 | url = "dap4://test.opendap.org/opendap/data/nc/bears.nc" |
| 6665 | actual = open_dataset(url, engine="pydap", **kwargs) |
| 6666 | with open_example_dataset("bears.nc") as expected: |
| 6667 | # workaround to restore string which is converted to byte |
| 6668 | # only needed for pydap <3.5.6 https://github.com/pydap/pydap/issues/510 |
| 6669 | expected["bears"].values = expected["bears"].values.astype("S") |
| 6670 | yield actual, expected |
| 6671 | |
| 6672 | def test_session(self) -> None: |
| 6673 | from requests import Session |
nothing calls this directly
no test coverage detected