()
| 350 | def test_cli_invoke(app): |
| 351 | @app.cli.command("hello") |
| 352 | def hello_command(): |
| 353 | click.echo("Hello, World!") |
| 354 | |
| 355 | runner = app.test_cli_runner() |
| 356 | # invoke with command name |
nothing calls this directly
no outgoing calls
no test coverage detected