projects
/
tweepy.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
babb106
)
Consumer credentials must now be provided to run oauth tests.
author
Josh Roesslein
<jroesslein@gmail.com>
Sun, 10 Oct 2010 07:16:26 +0000
(
02:16
-0500)
committer
Josh Roesslein
<jroesslein@gmail.com>
Sun, 10 Oct 2010 07:16:26 +0000
(
02:16
-0500)
tests.py
patch
|
blob
|
blame
|
history
diff --git
a/tests.py
b/tests.py
index 246e73adfc2337d04a2a7b089f873db794935244..c8bf5545487b6ebe8292d180a79d3e040a743da4 100644
(file)
--- a/
tests.py
+++ b/
tests.py
@@
-9,6
+9,8
@@
from tweepy import *
# Must supply twitter account credentials for tests
username = ''
password = ''
+consumer_key = ''
+consumer_secret = ''
"""Unit tests"""
@@
-308,9
+310,6
@@
class TweepyCursorTests(unittest.TestCase):
class TweepyAuthTests(unittest.TestCase):
- consumer_key = 'ZbzSsdQj7t68VYlqIFvdcA'
- consumer_secret = '4yDWgrBiRs2WIx3bfvF9UWCRmtQ2YKpKJKBahtZcU'
-
def testoauth(self):
auth = OAuthHandler(self.consumer_key, self.consumer_secret)