From: Josh Roesslein Date: Thu, 30 Jul 2009 23:08:25 +0000 (-0500) Subject: Updated todo and tests. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=876426b7cab2c60f59bb61e492113439e0ede2fd;p=tweepy.git Updated todo and tests. --- diff --git a/TODO b/TODO index d0c0260..3a5a196 100644 --- a/TODO +++ b/TODO @@ -1,7 +1,6 @@ Stuff that needs to be done... - finish unit tests -- oauth support - search API - caching system + in-memory cache done. now just need a file-based cache (pickle?) diff --git a/tests.py b/tests.py index 92b9d46..6bce512 100644 --- a/tests.py +++ b/tests.py @@ -13,8 +13,8 @@ from tweepy import * class TweepyAPITests(unittest.TestCase): # Must supply twitter account credentials for tests - username = 'tweebly' - password = 'omega1987twitter' + username = '' + password = '' def setUp(self): self.api = API(BasicAuthHandler(self.username, self.password), self.username)