(self, p, expected, strict=True)
| 1838 | os.chdir(old_path) |
| 1839 | |
| 1840 | def _check_resolve(self, p, expected, strict=True): |
| 1841 | q = p.resolve(strict) |
| 1842 | self.assertEqual(q, expected) |
| 1843 | |
| 1844 | # This can be used to check both relative and absolute resolutions. |
| 1845 | _check_resolve_relative = _check_resolve_absolute = _check_resolve |
nothing calls this directly
no test coverage detected