Test encoding UTF-8 works
(self)
| 295 | self.assertEqual(constructed_url, 'https://api.twitter.com/1.1/search/tweets.json?q=%23twitter') |
| 296 | |
| 297 | def test_encode(self): |
| 298 | """Test encoding UTF-8 works""" |
| 299 | self.api.encode('Twython is awesome!') |
| 300 | |
| 301 | def test_cursor_requires_twython_function(self): |
| 302 | """Test that cursor() raises when called without a Twython function""" |