(request)
| 951 | """ |
| 952 | |
| 953 | def get_stream_response(request): |
| 954 | resp = StreamingHttpResponse(self.sequence) |
| 955 | resp["Content-Type"] = "text/html; charset=UTF-8" |
| 956 | return resp |
| 957 | |
| 958 | r = GZipMiddleware(get_stream_response)(self.req) |
| 959 | self.assertEqual(self.decompress(b"".join(r)), b"".join(self.sequence)) |
nothing calls this directly
no test coverage detected