(self)
| 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") |
| 379 | self.assertEqual(project.url, "https://api.github.com/projects/4084610") |
| 380 | |
| 381 | def testCreateRepositoryWithAllArguments(self): |
| 382 | repo = self.user.create_repo( |
nothing calls this directly
no test coverage detected