Tests update.
authorJosh Roesslein <jroesslein@gmail.com>
Thu, 30 Jul 2009 21:00:32 +0000 (16:00 -0500)
committerJosh Roesslein <jroesslein@gmail.com>
Thu, 30 Jul 2009 21:00:32 +0000 (16:00 -0500)
tests.py

index 865c954bca33672c79555725bd24d74e324f050f..3a11aaff61b0410da54f827e656f77f6af76a0c5 100644 (file)
--- a/tests.py
+++ b/tests.py
@@ -13,18 +13,12 @@ from tweepy import *
 class TweepyAPITests(unittest.TestCase):
 
   # Must supply twitter account credentials for tests
-  username = 'jitterapp'
-  password = 'omega123'
+  username = ''
+  password = ''
 
   def setUp(self):
     self.api = API(self.username, self.password)
 
-  def testsetcredentials(self):
-    testapi = API()
-    testapi.set_credentials('test', 'donttellanyone')
-    self.assert_(testapi._b64up)
-    self.assertEqual(testapi.username, 'test')
-
   def testpublictimeline(self):
     s = self.api.public_timeline()
     self.assert_(len(s) == 20)