(self)
| 76 | self.assertTrue('and $ANOTHER and $A.' in tweet_text) |
| 77 | |
| 78 | def test_compatmode(self): |
| 79 | tweet_object = self.load_tweet('compat') |
| 80 | tweet_text = self.api.html_for_tweet(tweet_object) |
| 81 | # link to compat web status link |
| 82 | self.assertTrue( |
| 83 | u'<a href="https://t.co/SRmsuks2ru" class="twython-url">twitter.com/i/web/status/7…</a>' in tweet_text) |
| 84 | |
| 85 | def test_extendedmode(self): |
| 86 | tweet_object = self.load_tweet('extended') |
nothing calls this directly
no test coverage detected