Commit f40dba29 authored by Furr's avatar Furr

Test that delete_many fails silently

parent 32fcf455
......@@ -358,6 +358,8 @@ class BaseRedisTestCase(SetupMixin):
self.assertIsNone(self.cache.get("key1"))
self.assertIsNone(self.cache.get("key2"))
self.assertEqual(self.cache.get("key3"), "ham")
# Test that passing an empty list fails silently
self.cache.delete_many([])
def test_clear(self):
# The cache can be emptied using clear
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment