(self)
| 1180 | self.assertEqual(normcase(path_a), normcase(path_b)) |
| 1181 | |
| 1182 | def tempdir(self): |
| 1183 | d = os_helper._longpath(tempfile.mkdtemp(suffix='-dirD', |
| 1184 | dir=os.getcwd())) |
| 1185 | self.addCleanup(os_helper.rmtree, d) |
| 1186 | return d |
| 1187 | |
| 1188 | def test_matches_writablepath_docstrings(self): |
| 1189 | path_names = {name for name in dir(pathlib.types._WritablePath) if name[0] != '_'} |
no test coverage detected