(self)
| 51 | |
| 52 | class Installation(Framework.BasicTestCase): |
| 53 | def setUp(self): |
| 54 | super().setUp() |
| 55 | app_id = 36541767 |
| 56 | private_key = GithubIntegration.PRIVATE_KEY |
| 57 | self.auth = AppAuth(app_id, private_key) |
| 58 | self.integration = github.GithubIntegration(auth=self.auth) |
| 59 | self.installations = list(self.integration.get_installations()) |
| 60 | self.installation = self.installations[0] |
| 61 | |
| 62 | def testAttributes(self): |
| 63 | self.assertEqual( |
nothing calls this directly
no test coverage detected