(self)
| 371 | self.assertListKeyEqual(self.user.get_authorizations(), lambda a: a.id, [372294]) |
| 372 | |
| 373 | def testCreateRepository(self): |
| 374 | repo = self.user.create_repo(name="TestPyGithub") |
| 375 | self.assertEqual(repo.url, "https://api.github.com/repos/jacquev6/TestPyGithub") |
| 376 | |
| 377 | def testCreateProject(self): |
| 378 | project = self.user.create_project(name="TestPyGithub", body="This is the body") |
nothing calls this directly
no test coverage detected