Kaydet (Commit) ea901eb9 authored tarafından Adam Johnson's avatar Adam Johnson Kaydeden (comit) Tim Graham

[2.0.x] Refs #27318 -- Made DummyCache.set_many() return a list for consistency…

[2.0.x] Refs #27318 -- Made DummyCache.set_many() return a list for consistency with other backends.

Backport of abacd09f from master
üst 6b5f2e3b
...@@ -34,7 +34,7 @@ class DummyCache(BaseCache): ...@@ -34,7 +34,7 @@ class DummyCache(BaseCache):
return False return False
def set_many(self, data, timeout=DEFAULT_TIMEOUT, version=None): def set_many(self, data, timeout=DEFAULT_TIMEOUT, version=None):
pass return []
def delete_many(self, keys, version=None): def delete_many(self, keys, version=None):
pass pass
......
...@@ -175,8 +175,8 @@ class DummyCacheTests(SimpleTestCase): ...@@ -175,8 +175,8 @@ class DummyCacheTests(SimpleTestCase):
def test_set_many(self): def test_set_many(self):
"set_many does nothing for the dummy cache backend" "set_many does nothing for the dummy cache backend"
cache.set_many({'a': 1, 'b': 2}) self.assertEqual(cache.set_many({'a': 1, 'b': 2}), [])
cache.set_many({'a': 1, 'b': 2}, timeout=2, version='1') self.assertEqual(cache.set_many({'a': 1, 'b': 2}, timeout=2, version='1'), [])
def test_delete_many(self): def test_delete_many(self):
"delete_many does nothing for the dummy cache backend" "delete_many does nothing for the dummy cache backend"
......
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