(self, p)
| 1211 | self.assertRaises(pathlib.UnsupportedOperation, self.cls) |
| 1212 | |
| 1213 | def _test_cwd(self, p): |
| 1214 | q = self.cls(os.getcwd()) |
| 1215 | self.assertEqual(p, q) |
| 1216 | self.assertEqualNormCase(str(p), str(q)) |
| 1217 | self.assertIs(type(p), type(q)) |
| 1218 | self.assertTrue(p.is_absolute()) |
| 1219 | |
| 1220 | def test_cwd(self): |
| 1221 | p = self.cls.cwd() |
no test coverage detected