(self)
| 1878 | class GzCompressWriteTest(GzipTest, _CompressedWriteTest, unittest.TestCase): |
| 1879 | prefix = "w:" |
| 1880 | def test_compression_levels(self): |
| 1881 | self._test_gz_header(1) |
| 1882 | self._test_gz_header(5) |
| 1883 | self._test_gz_header(9) |
| 1884 | |
| 1885 | class GzCompressStreamWriteTest(GzipTest, _CompressedWriteTest, |
| 1886 | unittest.TestCase): |
nothing calls this directly
no test coverage detected