(_context: MockContext)
| 109 | @router.handler('A') |
| 110 | @router.handler('B') |
| 111 | async def handler(_context: MockContext) -> None: |
| 112 | mock_handler(_context.request.label) |
| 113 | |
| 114 | await router(MockContext(label='A')) |
| 115 | mock_handler.assert_called_with('A') |
no outgoing calls
no test coverage detected