Fixes #244
This commit is contained in:
parent
dd3727c6f5
commit
06f5425724
3 changed files with 50 additions and 1 deletions
|
|
@ -482,6 +482,22 @@ class TwythonAPITestCase(unittest.TestCase):
|
|||
self.api.get_closest_trends(lat='37', long='-122')
|
||||
|
||||
# Help
|
||||
def test_get_twitter_configuration(self):
|
||||
"""Test getting Twitter's configuration succeeds"""
|
||||
self.api.get_twitter_configuration()
|
||||
|
||||
def test_get_supported_languages(self):
|
||||
"""Test getting languages supported by Twitter succeeds"""
|
||||
self.api.get_supported_languages()
|
||||
|
||||
def test_privacy_policy(self):
|
||||
"""Test getting Twitter's Privacy Policy succeeds"""
|
||||
self.api.get_privacy_policy()
|
||||
|
||||
def test_get_tos(self):
|
||||
"""Test getting the Twitter Terms of Service succeeds"""
|
||||
self.api.get_tos()
|
||||
|
||||
def test_get_application_rate_limit_status(self):
|
||||
"""Test getting application rate limit status succeeds"""
|
||||
self.oauth2_api.get_application_rate_limit_status()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue