(self)
| 598 | ) |
| 599 | |
| 600 | def test_google_login(self): |
| 601 | response = self.fetch("/client/login") |
| 602 | self.assertDictEqual( |
| 603 | { |
| 604 | u"name": u"Foo", |
| 605 | u"email": u"foo@example.com", |
| 606 | u"access_token": u"fake-access-token", |
| 607 | }, |
| 608 | json_decode(response.body), |
| 609 | ) |
nothing calls this directly
no test coverage detected