(self, fileobj=None)
| 2573 | test_append_compressed = None |
| 2574 | |
| 2575 | def _add_testfile(self, fileobj=None): |
| 2576 | with tarfile.open(self.tarname, "a", fileobj=fileobj) as tar: |
| 2577 | tar.addfile(tarfile.TarInfo("bar")) |
| 2578 | |
| 2579 | def _test(self, names=["bar"], fileobj=None): |
| 2580 | with tarfile.open(self.tarname, fileobj=fileobj) as tar: |
no test coverage detected