(self)
| 682 | "wrong uname for %s" % tarinfo.name) |
| 683 | |
| 684 | def test_find_members(self): |
| 685 | self.assertEqual(self.tar.getmembers()[-1].name, "misc/eof", |
| 686 | "could not find all members") |
| 687 | |
| 688 | @unittest.skipUnless(hasattr(os, "link"), |
| 689 | "Missing hardlink implementation") |
nothing calls this directly
no test coverage detected