(self)
| 113 | self.assertEqual(g.get_user("jacquev6").name, "Vincent Jacques") |
| 114 | |
| 115 | def testTokenAuthentication(self): |
| 116 | # test data copied from testOAuthAuthentication to test parity |
| 117 | g = github.Github(auth=self.oauth_token) |
| 118 | self.assertEqual(g.get_user("jacquev6").name, "Vincent Jacques") |
| 119 | |
| 120 | def testAppAuthTokenAuthentication(self): |
| 121 | # test data copied from testJWTAuthentication to test parity |