From 876426b7cab2c60f59bb61e492113439e0ede2fd Mon Sep 17 00:00:00 2001 From: Josh Roesslein Date: Thu, 30 Jul 2009 18:08:25 -0500 Subject: [PATCH] Updated todo and tests. --- TODO | 1 - tests.py | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) 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) -- 2.25.1