(make_request)
| 157 | |
| 158 | |
| 159 | def test_host_port_default_https(make_request) -> None: |
| 160 | req = make_request("get", "https://python.org/") |
| 161 | assert req.host == "python.org" |
| 162 | assert req.port == 443 |
| 163 | assert req.is_ssl() |
| 164 | |
| 165 | |
| 166 | def test_host_port_nondefault_http(make_request) -> None: |
nothing calls this directly
no test coverage detected