(self, url, sess)
| 40 | |
| 41 | class TestSessionActions: |
| 42 | def test_get_caches(self, url, sess): |
| 43 | r2 = sess.get(url) |
| 44 | assert r2.from_cache is True |
| 45 | |
| 46 | def test_get_with_no_cache_does_not_cache(self, url, sess): |
| 47 | r2 = sess.get(url, headers={"Cache-Control": "no-cache"}) |