projects
/
tweepy.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
29a7ece
)
added tests for friends() and followers()
author
Stuart Powers
<stuart.powers@gmail.com>
Wed, 20 Feb 2013 01:00:12 +0000
(20:00 -0500)
committer
Stuart Powers
<stuart.powers@gmail.com>
Wed, 20 Feb 2013 01:00:12 +0000
(20:00 -0500)
tests.py
patch
|
blob
|
blame
|
history
diff --git
a/tests.py
b/tests.py
index 09bba5452a1f93ea19e67e9f73327a5bf979b274..20d4a1bc1d3325a85447f64d8af3ecec9ded1856 100644
(file)
--- a/
tests.py
+++ b/
tests.py
@@
-150,6
+150,12
@@
class TweepyAPITests(unittest.TestCase):
def testfollowersids(self):
self.api.followers_ids(username)
+ def testfriends(self):
+ self.api.friends(username)
+
+ def testfollowers(self):
+ self.api.followers(username)
+
def testverifycredentials(self):
self.assertNotEqual(self.api.verify_credentials(), False)