(self)
| 37 | self.assertEqual(await cache.aget_many(["a", "b", "e"]), {}) |
| 38 | |
| 39 | async def test_aget_many_invalid_key(self): |
| 40 | msg = KEY_ERRORS_WITH_MEMCACHED_MSG % ":1:key with spaces" |
| 41 | with self.assertWarnsMessage(CacheKeyWarning, msg): |
| 42 | await cache.aget_many(["key with spaces"]) |
| 43 | |
| 44 | async def test_adelete(self): |
| 45 | """ |
nothing calls this directly
no test coverage detected