(self, request, msg)
| 2349 | cache.clear() |
| 2350 | |
| 2351 | def _set_cache(self, request, msg): |
| 2352 | return UpdateCacheMiddleware(lambda req: HttpResponse(msg))(request) |
| 2353 | |
| 2354 | def test_head_caches_correctly(self): |
| 2355 | test_content = "test content" |
no test coverage detected