(self)
| 1861 | class GzCompressWriteTest(GzipTest, _CompressedWriteTest, unittest.TestCase): |
| 1862 | prefix = "w:" |
| 1863 | def test_compression_levels(self): |
| 1864 | self._test_gz_header(1) |
| 1865 | self._test_gz_header(5) |
| 1866 | self._test_gz_header(9) |
| 1867 | |
| 1868 | class GzCompressStreamWriteTest(GzipTest, _CompressedWriteTest, |
| 1869 | unittest.TestCase): |
nothing calls this directly
no test coverage detected