From 7384e723e27e5aea395200c78fb4c0f547ed9138 Mon Sep 17 00:00:00 2001 From: Josh Roesslein Date: Thu, 30 Jul 2009 16:00:32 -0500 Subject: [PATCH] Tests update. --- tests.py | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/tests.py b/tests.py index 865c954..3a11aaf 100644 --- 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) -- 2.25.1