From: Josh Roesslein Date: Thu, 30 Jul 2009 21:00:32 +0000 (-0500) Subject: Tests update. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=7384e723e27e5aea395200c78fb4c0f547ed9138;p=tweepy.git Tests update. --- 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)