We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed69e29 commit 6f36f77Copy full SHA for 6f36f77
tests/test_middlewares/test_middleware_mixin.py
@@ -15,17 +15,20 @@
15
async def async_get_response(request):
16
return resp_for_get_response
17
18
+
19
class ResponseMiddleware(AsyncMiddlewareMixin):
20
async def process_request(self, request):
21
return req
22
23
async def process_response(self, request, response):
24
return resp
25
26
27
class RequestMiddleware(AsyncMiddlewareMixin):
28
29
30
31
32
class TestMiddlewareMixin:
33
def test_repr(self):
34
class GetResponse:
0 commit comments