(self)
| 2606 | self._test_error(b"\0" * 13) |
| 2607 | |
| 2608 | def test_premature_eof(self): |
| 2609 | data = tarfile.TarInfo("foo").tobuf() |
| 2610 | self._test_error(data) |
| 2611 | |
| 2612 | def test_trailing_garbage(self): |
| 2613 | data = tarfile.TarInfo("foo").tobuf() |
nothing calls this directly
no test coverage detected