(self)
| 2590 | self._test() |
| 2591 | |
| 2592 | def test_empty_fileobj(self): |
| 2593 | fobj = io.BytesIO(b"\0" * 1024) |
| 2594 | self._add_testfile(fobj) |
| 2595 | fobj.seek(0) |
| 2596 | self._test(fileobj=fobj) |
| 2597 | |
| 2598 | def test_fileobj(self): |
| 2599 | self._create_testtar() |
nothing calls this directly
no test coverage detected