(self)
| 3129 | @unittest.skipIf(hasattr(os.path, "islink"), |
| 3130 | "Skip emulation - has os.path.islink but not os.link") |
| 3131 | def test_hardlink_extraction2(self): |
| 3132 | self._test_link_extraction("./ustar/linktest2/lnktype") |
| 3133 | |
| 3134 | @unittest.skipIf(hasattr(os, "symlink"), |
| 3135 | "Skip emulation if symlink exists") |
nothing calls this directly
no test coverage detected