(self)
| 1728 | self.assertFalse(f.closed) |
| 1729 | |
| 1730 | def test_missing_fileobj(self): |
| 1731 | with tarfile.open(tmpname, self.mode) as tar: |
| 1732 | tarinfo = tar.gettarinfo(tarname) |
| 1733 | with self.assertRaises(ValueError): |
| 1734 | tar.addfile(tarinfo) |
| 1735 | |
| 1736 | |
| 1737 | class GzipWriteTest(GzipTest, WriteTest): |
nothing calls this directly
no test coverage detected