(self)
| 514 | ) |
| 515 | |
| 516 | def test_twitter_show_user(self): |
| 517 | response = self.fetch("/twitter/client/show_user?name=somebody") |
| 518 | response.rethrow() |
| 519 | self.assertEqual( |
| 520 | json_decode(response.body), {"name": "Somebody", "screen_name": "somebody"} |
| 521 | ) |
| 522 | |
| 523 | def test_twitter_show_user_error(self): |
| 524 | response = self.fetch("/twitter/client/show_user?name=error") |
nothing calls this directly
no test coverage detected