(self)
| 309 | self.assertEqual(eval(inner), p.as_posix()) |
| 310 | |
| 311 | def test_fspath_common(self): |
| 312 | P = self.cls |
| 313 | p = P('a/b') |
| 314 | self._check_str(p.__fspath__(), ('a/b',)) |
| 315 | self._check_str(os.fspath(p), ('a/b',)) |
| 316 | |
| 317 | def test_bytes(self): |
| 318 | P = self.cls |
nothing calls this directly
no test coverage detected