(self)
| 2091 | return Path(tempfile.mktemp(suffix=".h5")) |
| 2092 | |
| 2093 | def setUp(self): |
| 2094 | super().setUp() |
| 2095 | |
| 2096 | self.test = self.h5file.create_array("/", "test", [1, 2]) |
| 2097 | |
| 2098 | # So as to check the reading |
| 2099 | self._reopen() |
| 2100 | |
| 2101 | def test01(self): |
| 2102 | """Checking creating a file with a PathLike object as the filename.""" |
nothing calls this directly
no test coverage detected