(environ, start_response)
| 354 | |
| 355 | def test_type_forcing(): |
| 356 | def wsgi_application(environ, start_response): |
| 357 | start_response("200 OK", [("Content-Type", "text/html")]) |
| 358 | return ["Hello World!"] |
| 359 | |
| 360 | base_response = wrappers.Response("Hello World!", content_type="text/html") |
| 361 |
nothing calls this directly
no test coverage detected