(foo, bar)
| 23 | @click.option("++foo", is_flag=True, help="das foo") |
| 24 | @click.option("--bar", is_flag=True, help="das bar") |
| 25 | def cli(foo, bar): |
| 26 | click.echo(f"foo={foo} bar={bar}") |
| 27 | |
| 28 | result = runner.invoke(cli, ["++foo", "--bar"]) |
| 29 | assert not result.exception |
nothing calls this directly
no test coverage detected