(self)
| 144 | self.assertEqual(cache.get_many(["a", "b", "e"]), {}) |
| 145 | |
| 146 | def test_get_many_invalid_key(self): |
| 147 | msg = KEY_ERRORS_WITH_MEMCACHED_MSG % ":1:key with spaces" |
| 148 | with self.assertWarnsMessage(CacheKeyWarning, msg): |
| 149 | cache.get_many(["key with spaces"]) |
| 150 | |
| 151 | def test_delete(self): |
| 152 | "Cache deletion is transparently ignored on the dummy cache backend" |
nothing calls this directly
no test coverage detected