From: Josh Roesslein Date: Wed, 12 Aug 2009 22:07:49 +0000 (-0500) Subject: Update oauth test. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=3e7c948267f9661e8e6ca201a0d69b0eaa66b73c;p=tweepy.git Update oauth test. --- diff --git a/tests.py b/tests.py index 6335e52..052852e 100644 --- a/tests.py +++ b/tests.py @@ -105,6 +105,8 @@ class TweepyAuthTests(unittest.TestCase): def testoauth(self): auth = OAuthHandler(self.consumer_key, self.consumer_secret) + + # test getting access token auth_url = auth.get_authorization_url() self.assert_(auth_url.startswith('http://twitter.com/oauth/authorize?')) print 'Please authorize: ' + auth_url @@ -113,8 +115,9 @@ class TweepyAuthTests(unittest.TestCase): access_token = auth.get_access_token(verifier) self.assert_(access_token is not None) + # build api object test using oauth api = API(auth) - self.assertTrue(api.verify_credentials()) + api.update_status('test %i' % random.randint(0,1000)) if __name__ == '__main__': unittest.main()