def testRemove(self): """Test the twitterapi._FileCache.Remove method""" cache = twitterapi._FileCache() cache.Set("foo", 'Hello World!') cache.Remove("foo") data = cache.Get("foo") self.assertEqual(data, None, 'data is not None')
def testGet(self): """Test the twitterapi._FileCache.Get method""" cache = twitterapi._FileCache() cache.Set("foo", 'Hello World!') data = cache.Get("foo") self.assertEqual('Hello World!', data) cache.Remove("foo")
def testGet(self): """Test the twitterapi._FileCache.Get method""" cache = twitterapi._FileCache() cache.Set("foo",'Hello World!') data = cache.Get("foo") self.assertEqual('Hello World!', data) cache.Remove("foo")
def testRemove(self): """Test the twitterapi._FileCache.Remove method""" cache = twitterapi._FileCache() cache.Set("foo",'Hello World!') cache.Remove("foo") data = cache.Get("foo") self.assertEqual(data, None, 'data is not None')
def testGetCachedTime(self): """Test the twitterapi._FileCache.GetCachedTime method""" now = time.time() cache = twitterapi._FileCache() cache.Set("foo",'Hello World!') cached_time = cache.GetCachedTime("foo") delta = cached_time - now self.assert_(delta <= 1, 'Cached time differs from clock time by more than 1 second.') cache.Remove("foo")
def testGetCachedTime(self): """Test the twitterapi._FileCache.GetCachedTime method""" now = time.time() cache = twitterapi._FileCache() cache.Set("foo", 'Hello World!') cached_time = cache.GetCachedTime("foo") delta = cached_time - now self.assert_( delta <= 1, 'Cached time differs from clock time by more than 1 second.') cache.Remove("foo")
def testSet(self): """Test the twitterapi._FileCache.Set method""" cache = twitterapi._FileCache() cache.Set("foo", 'Hello World!') cache.Remove("foo")
def testInit(self): """Test the twitterapi._FileCache constructor""" cache = twitterapi._FileCache() self.assert_(cache is not None, 'cache is None')
def testSet(self): """Test the twitterapi._FileCache.Set method""" cache = twitterapi._FileCache() cache.Set("foo",'Hello World!') cache.Remove("foo")