Coverage for tests/test_tutorial/test_custom_response/test_tutorial007.py: 100%

7 statements  

« prev     ^ index     » next       coverage.py v7.6.1, created at 2024-08-08 03:53 +0000

1from fastapi.testclient import TestClient 1abcde

2 

3from docs_src.custom_response.tutorial007 import app 1abcde

4 

5client = TestClient(app) 1abcde

6 

7 

8def test_get(): 1abcde

9 fake_content = b"some fake video bytes" 1abcde

10 response = client.get("/") 1abcde

11 assert response.content == fake_content * 10 1abcde