(coro)
| 338 | callback = app.registered_commands[0].callback |
| 339 | |
| 340 | def _run(coro): |
| 341 | coro.close() |
| 342 | return CommandResult(success=True, output=None) |
| 343 | |
| 344 | with patch("asyncio.run", side_effect=_run): |
| 345 | with patch("mcp_cli.adapters.cli.output") as mock_output: |
nothing calls this directly
no test coverage detected