Updated todo and tests.
authorJosh Roesslein <jroesslein@gmail.com>
Thu, 30 Jul 2009 23:08:25 +0000 (18:08 -0500)
committerJosh Roesslein <jroesslein@gmail.com>
Thu, 30 Jul 2009 23:08:25 +0000 (18:08 -0500)
TODO
tests.py

diff --git a/TODO b/TODO
index d0c0260e402edaac124de180c254219808da7e11..3a5a196d54a78317bc67ae79da61fa80076ad015 100644 (file)
--- 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?)
index 92b9d46102dcca3b464956a9730a7f06e421ebe1..6bce512e9e39862a637d9d461a5aaf7749304ab9 100644 (file)
--- 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)