(self)
| 1648 | self.assertEqual(pull.id, 1436215) |
| 1649 | |
| 1650 | def testCreateProject(self): |
| 1651 | project = self.repo.create_project("Project created by PyGithub", "Body of the project") |
| 1652 | self.assertEqual(project.id, 2013820) |
| 1653 | |
| 1654 | def testCreatePullFromIssue(self): |
| 1655 | issue = self.repo.get_issue(32) |
nothing calls this directly
no test coverage detected