(self)
| 575 | |
| 576 | class GoogleOAuth2UserinfoHandler(RequestHandler): |
| 577 | def get(self): |
| 578 | assert self.get_argument("access_token") == "fake-access-token" |
| 579 | # return a fake user |
| 580 | self.finish({"name": "Foo", "email": "foo@example.com"}) |
| 581 | |
| 582 | |
| 583 | class GoogleOAuth2Test(AsyncHTTPTestCase): |
nothing calls this directly
no test coverage detected