(file_response_client: TestClient)
| 783 | |
| 784 | |
| 785 | def test_file_response_range_invalid(file_response_client: TestClient) -> None: |
| 786 | response = file_response_client.head("/", headers={"Range": "bytes: 0-1000"}) |
| 787 | assert response.status_code == 400 |
| 788 | |
| 789 | |
| 790 | def test_file_response_range_head_max(file_response_client: TestClient) -> None: |