()
| 139 | |
| 140 | |
| 141 | def test_wsgi_generator_empty(): |
| 142 | output = [b"", b"", b"", b""] |
| 143 | transport = httpx.WSGITransport(app=application_factory(output)) |
| 144 | client = httpx.Client(transport=transport) |
| 145 | response = client.get("http://www.example.org/") |
| 146 | assert response.status_code == 200 |
| 147 | assert response.text == "" |
| 148 | |
| 149 | |
| 150 | def test_logging(): |
nothing calls this directly
no test coverage detected