Simple mw
(self)
| 281 | |
| 282 | @coroutine_test |
| 283 | async def test_simple(self): |
| 284 | """Simple mw""" |
| 285 | start = await self._get_processed_start(self.MW_SIMPLE) |
| 286 | assert isasyncgen(start) |
| 287 | start_list = await collect_asyncgen(start) |
| 288 | assert len(start_list) == self.RESULT_COUNT |
| 289 | assert isinstance(start_list[0], self.ITEM_TYPE) |
| 290 | |
| 291 | |
| 292 | class UniversalMiddlewareNoSync: |
nothing calls this directly
no test coverage detected