(foo)
| 28 | @click.command() |
| 29 | @click.option("--foo", default=default, type=type) |
| 30 | def cli(foo): |
| 31 | assert isinstance(foo, expected_type) |
| 32 | click.echo(f"FOO:[{foo}]") |
| 33 | |
| 34 | result = runner.invoke(cli, []) |
| 35 | assert not result.exception |
nothing calls this directly
no test coverage detected