def test_incr(self): key = "album_total_num" cache.set(key, self.num_albums) result = cache.incr(key, 1) self.assertEqual(result, self.num_albums+1)