(self)
| 66 | self.assertIsNone(close) |
| 67 | |
| 68 | def test_compression_gzip(self): |
| 69 | headers, raw_headers, close, compression = self.parser.parse_headers( |
| 70 | [b'', b'content-encoding: gzip', b'', b'']) |
| 71 | self.assertEqual('gzip', compression) |
| 72 | |
| 73 | def test_compression_deflate(self): |
| 74 | headers, raw_headers, close, compression = self.parser.parse_headers( |
nothing calls this directly
no test coverage detected