(ctx, param, value)
| 288 | |
| 289 | def test_app_cli_has_app_context(app, runner): |
| 290 | def _param_cb(ctx, param, value): |
| 291 | # current_app should be available in parameter callbacks |
| 292 | return bool(current_app) |
| 293 | |
| 294 | @app.cli.command() |
| 295 | @click.argument("value", callback=_param_cb) |
nothing calls this directly
no outgoing calls
no test coverage detected