(self)
| 2623 | self._test_error(b"\0" * 13) |
| 2624 | |
| 2625 | def test_premature_eof(self): |
| 2626 | data = tarfile.TarInfo("foo").tobuf() |
| 2627 | self._test_error(data) |
| 2628 | |
| 2629 | def test_trailing_garbage(self): |
| 2630 | data = tarfile.TarInfo("foo").tobuf() |
nothing calls this directly
no test coverage detected