(self)
| 566 | |
| 567 | class GoogleOAuth2TokenHandler(RequestHandler): |
| 568 | def post(self): |
| 569 | assert self.get_argument("code") == "fake-authorization-code" |
| 570 | # issue a fake token |
| 571 | self.finish( |
| 572 | {"access_token": "fake-access-token", "expires_in": "never-expires"} |
| 573 | ) |
| 574 | |
| 575 | |
| 576 | class GoogleOAuth2UserinfoHandler(RequestHandler): |
nothing calls this directly
no test coverage detected