(cmd: tuple[str, ...], caplog, port)
| 116 | ), |
| 117 | ) |
| 118 | def test_tls_options(cmd: tuple[str, ...], caplog, port): |
| 119 | command = [ |
| 120 | "fake.server.app", |
| 121 | *cmd, |
| 122 | f"--port={port}", |
| 123 | "--debug", |
| 124 | "--single-process", |
| 125 | ] |
| 126 | lines = capture(command, caplog) |
| 127 | assert f"Goin' Fast @ https://127.0.0.1:{port}" in lines |
| 128 | |
| 129 | |
| 130 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected
searching dependent graphs…