(self)
| 137 | ) |
| 138 | |
| 139 | async def test_aset_many_invalid_key(self): |
| 140 | msg = KEY_ERRORS_WITH_MEMCACHED_MSG % ":1:key with spaces" |
| 141 | with self.assertWarnsMessage(CacheKeyWarning, msg): |
| 142 | await cache.aset_many({"key with spaces": "foo"}) |
| 143 | |
| 144 | async def test_adelete_many(self): |
| 145 | """adelete_many() does nothing for the dummy cache backend.""" |
nothing calls this directly
no test coverage detected