()
| 13 | |
| 14 | @pytest.fixture() |
| 15 | def sess(): |
| 16 | sess = CacheControl(requests.Session()) |
| 17 | yield sess |
| 18 | |
| 19 | # closing session object |
| 20 | sess.close() |
| 21 | |
| 22 | |
| 23 | class TestChunkedResponses: |
nothing calls this directly
no test coverage detected
searching dependent graphs…