(self)
| 1745 | self.assertFalse(f.closed) |
| 1746 | |
| 1747 | def test_missing_fileobj(self): |
| 1748 | with tarfile.open(tmpname, self.mode) as tar: |
| 1749 | tarinfo = tar.gettarinfo(tarname) |
| 1750 | with self.assertRaises(ValueError): |
| 1751 | tar.addfile(tarinfo) |
| 1752 | |
| 1753 | |
| 1754 | class GzipWriteTest(GzipTest, WriteTest): |
nothing calls this directly
no test coverage detected