(self)
| 243 | self.assertEqual(cache.set_many({"a": 1, "b": 2}, timeout=2, version="1"), []) |
| 244 | |
| 245 | def test_set_many_invalid_key(self): |
| 246 | msg = KEY_ERRORS_WITH_MEMCACHED_MSG % ":1:key with spaces" |
| 247 | with self.assertWarnsMessage(CacheKeyWarning, msg): |
| 248 | cache.set_many({"key with spaces": "foo"}) |
| 249 | |
| 250 | def test_delete_many(self): |
| 251 | "delete_many does nothing for the dummy cache backend" |
nothing calls this directly
no test coverage detected