(self)
| 2585 | self._test() |
| 2586 | |
| 2587 | def test_empty(self): |
| 2588 | tarfile.open(self.tarname, "w:").close() |
| 2589 | self._add_testfile() |
| 2590 | self._test() |
| 2591 | |
| 2592 | def test_empty_fileobj(self): |
| 2593 | fobj = io.BytesIO(b"\0" * 1024) |
nothing calls this directly
no test coverage detected