Nonexistent keys aren't found in the dummy cache backend
(self)
| 133 | self.assertIsNone(cache.get("addkey1")) |
| 134 | |
| 135 | def test_non_existent(self): |
| 136 | "Nonexistent keys aren't found in the dummy cache backend" |
| 137 | self.assertIsNone(cache.get("does_not_exist")) |
| 138 | self.assertEqual(cache.get("does_not_exist", "bang!"), "bang!") |
| 139 | |
| 140 | def test_get_many(self): |
| 141 | "get_many returns nothing for the dummy cache backend" |