(self, *args)
| 1920 | self.assertEqual(r.resolve(strict=False), p / '3' / '4') |
| 1921 | |
| 1922 | def _check_symlink_loop(self, *args): |
| 1923 | path = self.cls(*args) |
| 1924 | with self.assertRaises(OSError) as cm: |
| 1925 | path.resolve(strict=True) |
| 1926 | self.assertEqual(cm.exception.errno, errno.ELOOP) |
| 1927 | |
| 1928 | @needs_posix |
| 1929 | @needs_symlinks |
no test coverage detected