(self)
| 249 | self._test_fileobj_link("symtype2", "ustar/regtype") |
| 250 | |
| 251 | def test_add_dir_getmember(self): |
| 252 | # bpo-21987 |
| 253 | self.add_dir_and_getmember('bar') |
| 254 | self.add_dir_and_getmember('a'*101) |
| 255 | |
| 256 | @unittest.skipUnless(hasattr(os, "getuid") and hasattr(os, "getgid"), |
| 257 | "Missing getuid or getgid implementation") |
nothing calls this directly
no test coverage detected