(mock_session)
| 74 | |
| 75 | |
| 76 | def test_delete__keys(mock_session): |
| 77 | r = mock_session.get(MOCKED_URL) |
| 78 | mock_session.cache.delete(r.cache_key, 'nonexistent_key') |
| 79 | mock_session.cache.delete('nonexistent_key') |
| 80 | assert not mock_session.cache.contains(url=MOCKED_URL) |
| 81 | |
| 82 | |
| 83 | @skip_pypy # time-machine doesn't work on PyPy |