()
| 22 | |
| 23 | |
| 24 | def use_adapter(): |
| 25 | print("Using adapter") |
| 26 | sess = Session() |
| 27 | sess.mount("http://", CacheControlAdapter()) |
| 28 | return sess |
| 29 | |
| 30 | |
| 31 | @pytest.fixture(params=[use_adapter, use_wrapper]) |
nothing calls this directly
no test coverage detected
searching dependent graphs…