def test_user_cache_3 (self) : uCache = {} netflix_user_cache(uCache) for a,b in uCache.items() : self.assert_(type(b) is float)
def test_user_cache_2 (self) : uCache = {} netflix_user_cache(uCache) for a,b in uCache.items() : self.assert_(type(a) is int)
def test_user_cache_1 (self) : uCache = {} netflix_user_cache(uCache) self.assert_(uCache) # False is uCache is empty
def test_user_cache_3(self): uCache = {} netflix_user_cache(uCache) for a, b in uCache.items(): self.assert_(type(b) is float)
def test_user_cache_2(self): uCache = {} netflix_user_cache(uCache) for a, b in uCache.items(): self.assert_(type(a) is int)
def test_user_cache_1(self): uCache = {} netflix_user_cache(uCache) self.assert_(uCache) # False is uCache is empty