(self, kwargs)
| 608 | @skip_if_ABSTFN_contains_backslash |
| 609 | @_parameterize({}, {'strict': ALL_BUT_LAST}, {'strict': ALLOW_MISSING}) |
| 610 | def test_realpath_relative(self, kwargs): |
| 611 | try: |
| 612 | os.symlink(posixpath.relpath(ABSTFN+"1"), ABSTFN) |
| 613 | self.assertEqual(realpath(ABSTFN, **kwargs), ABSTFN+"1") |
| 614 | finally: |
| 615 | os_helper.unlink(ABSTFN) |
| 616 | |
| 617 | @os_helper.skip_unless_symlink |
| 618 | @skip_if_ABSTFN_contains_backslash |
nothing calls this directly
no test coverage detected