def test_cache_passthrough(self): """test cache pass through """ @cache.Cache() def return_value(value): return time.time() value=return_value(0) self.assertNotEqual(value, return_value(1))