(self, p, expected, strict=True)
| 1847 | os.chdir(old_path) |
| 1848 | |
| 1849 | def _check_resolve(self, p, expected, strict=True): |
| 1850 | q = p.resolve(strict) |
| 1851 | self.assertEqual(q, expected) |
| 1852 | |
| 1853 | # This can be used to check both relative and absolute resolutions. |
| 1854 | _check_resolve_relative = _check_resolve_absolute = _check_resolve |
nothing calls this directly
no test coverage detected