Function
test_host_port_localhost
(cmd: tuple[str, ...], caplog, port)
Source from the content-addressed store, hash-verified
| 158 | ), |
| 159 | ) |
| 160 | def test_host_port_localhost(cmd: tuple[str, ...], caplog, port): |
| 161 | cmd = [c.format(port=str(port)) for c in cmd] |
| 162 | command = ["fake.server.app", *cmd] |
| 163 | lines = capture(command, caplog) |
| 164 | expected = f"Goin' Fast @ http://localhost:{port}" |
| 165 | |
| 166 | assert expected in lines |
| 167 | |
| 168 | |
| 169 | @pytest.mark.parametrize( |
Callers
nothing calls this directly
Tested by
no test coverage detected
Used in the wild real call sites across dependent graphs
searching dependent graphs…