(self)
| 123 | self.assertEqual(g.get_user("jacquev6").name, "Vincent Jacques") |
| 124 | |
| 125 | def testAppAuthAuthentication(self): |
| 126 | # test data copied from testAppAuthentication to test parity |
| 127 | g = github.Github(auth=self.app_auth.get_installation_auth(29782936)) |
| 128 | self.assertEqual(g.get_user("ammarmallik").name, "Ammar Akbar") |
| 129 | |
| 130 | def assert_requester_args(self, g, expected_requester): |
| 131 | expected_args = expected_requester.kwargs |
nothing calls this directly
no test coverage detected