Commit 38a6bf68 by Don Mitchell

Add set to mocked cache

parent ee5ee92b
......@@ -408,3 +408,9 @@ class TrivialCache(object):
mock set_many
"""
self.cache.update(entries)
def set(self, key, entry):
"""
mock set
"""
self.cache[key] = entry
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