(self)
| 252 | cache.delete_many(["a", "b"]) |
| 253 | |
| 254 | def test_delete_many_invalid_key(self): |
| 255 | msg = KEY_ERRORS_WITH_MEMCACHED_MSG % ":1:key with spaces" |
| 256 | with self.assertWarnsMessage(CacheKeyWarning, msg): |
| 257 | cache.delete_many(["key with spaces"]) |
| 258 | |
| 259 | def test_clear(self): |
| 260 | "clear does nothing for the dummy cache backend" |
nothing calls this directly
no test coverage detected