(callback, *args, **kwargs)
| 2474 | @mock.patch('asyncio.base_events.logger') |
| 2475 | def test_error_in_call_soon(self, m_log): |
| 2476 | def call_soon(callback, *args, **kwargs): |
| 2477 | raise ValueError |
| 2478 | self.loop.call_soon = call_soon |
| 2479 | |
| 2480 | async def coro(): |
no outgoing calls
no test coverage detected