(self)
| 3124 | @unittest.skipIf(hasattr(os.path, "islink"), |
| 3125 | "Skip emulation - has os.path.islink but not os.link") |
| 3126 | def test_hardlink_extraction1(self): |
| 3127 | self._test_link_extraction("ustar/lnktype") |
| 3128 | |
| 3129 | @unittest.skipIf(hasattr(os.path, "islink"), |
| 3130 | "Skip emulation - has os.path.islink but not os.link") |
nothing calls this directly
no test coverage detected