(self)
| 3107 | @unittest.skipIf(hasattr(os.path, "islink"), |
| 3108 | "Skip emulation - has os.path.islink but not os.link") |
| 3109 | def test_hardlink_extraction1(self): |
| 3110 | self._test_link_extraction("ustar/lnktype") |
| 3111 | |
| 3112 | @unittest.skipIf(hasattr(os.path, "islink"), |
| 3113 | "Skip emulation - has os.path.islink but not os.link") |
nothing calls this directly
no test coverage detected