Dummy cache backend ignores cache set calls
(self)
| 122 | # so it has its own test case. |
| 123 | |
| 124 | def test_simple(self): |
| 125 | "Dummy cache backend ignores cache set calls" |
| 126 | cache.set("key", "value") |
| 127 | self.assertIsNone(cache.get("key")) |
| 128 | |
| 129 | def test_add(self): |
| 130 | "Add doesn't do anything in dummy cache backend" |