()
| 24 | |
| 25 | |
| 26 | def test_response_constructor_with_content() -> None: |
| 27 | # Create a new response object with content |
| 28 | response = Response(200, content=b'Test content') |
| 29 | |
| 30 | assert response.status_code == 200 |
| 31 | assert response.content == b'Test content' |
| 32 | assert response.text == 'Test content' |
| 33 | |
| 34 | |
| 35 | def test_response_constructor_with_headers() -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…