(readme_file: Path, test_client_factory: TestClientFactory)
| 715 | |
| 716 | @pytest.fixture |
| 717 | def file_response_client(readme_file: Path, test_client_factory: TestClientFactory) -> TestClient: |
| 718 | return test_client_factory(app=FileResponse(str(readme_file))) |
| 719 | |
| 720 | |
| 721 | def test_file_response_without_range(file_response_client: TestClient) -> None: |
nothing calls this directly
no test coverage detected