Dummy cache can't do touch().
(self)
| 191 | cache.decr("does_not_exist", -1) |
| 192 | |
| 193 | def test_touch(self): |
| 194 | """Dummy cache can't do touch().""" |
| 195 | self.assertIs(cache.touch("whatever"), False) |
| 196 | |
| 197 | def test_data_types(self): |
| 198 | "All data types are ignored equally by the dummy cache" |