(environ, expect)
| 58 | ), |
| 59 | ) |
| 60 | def test_get_host(environ, expect): |
| 61 | environ.setdefault("wsgi.url_scheme", "http") |
| 62 | assert wsgi.get_host(environ) == expect |
| 63 | |
| 64 | |
| 65 | def test_get_host_validate_trusted_hosts(): |
nothing calls this directly
no test coverage detected