()
| 33 | |
| 34 | |
| 35 | def test_response_constructor_with_headers() -> None: |
| 36 | # Create a new response object with headers |
| 37 | response = Response(200, headers={'Content-Type': 'application/json'}) |
| 38 | |
| 39 | assert response.status_code == 200 |
| 40 | assert response.headers['Content-Type'] == 'application/json' |
| 41 | |
| 42 | |
| 43 | def test_response_headers_encoding() -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…