(self, *args)
| 1929 | self.assertEqual(r.resolve(strict=False), p / '3' / '4') |
| 1930 | |
| 1931 | def _check_symlink_loop(self, *args): |
| 1932 | path = self.cls(*args) |
| 1933 | with self.assertRaises(OSError) as cm: |
| 1934 | path.resolve(strict=True) |
| 1935 | self.assertEqual(cm.exception.errno, errno.ELOOP) |
| 1936 | |
| 1937 | @needs_posix |
| 1938 | @needs_symlinks |
no test coverage detected