()
| 51 | def test_echo_stdin_prompts(): |
| 52 | @click.command() |
| 53 | def test_python_input(): |
| 54 | foo = input("Foo: ") |
| 55 | click.echo(f"foo={foo}") |
| 56 | |
| 57 | runner = CliRunner(echo_stdin=True) |
| 58 | result = runner.invoke(test_python_input, input="bar bar\n") |
nothing calls this directly
no test coverage detected
searching dependent graphs…