(self, kwargs)
| 591 | @skip_if_ABSTFN_contains_backslash |
| 592 | @_parameterize({}, {'strict': ALLOW_MISSING}) |
| 593 | def test_realpath_relative(self, kwargs): |
| 594 | try: |
| 595 | os.symlink(posixpath.relpath(ABSTFN+"1"), ABSTFN) |
| 596 | self.assertEqual(realpath(ABSTFN, **kwargs), ABSTFN+"1") |
| 597 | finally: |
| 598 | os_helper.unlink(ABSTFN) |
| 599 | |
| 600 | @os_helper.skip_unless_symlink |
| 601 | @skip_if_ABSTFN_contains_backslash |
nothing calls this directly
no test coverage detected