(self)
| 458 | self.assertFalse(repo.has_pages) |
| 459 | |
| 460 | def testCreateRepositoryWithAutoInit(self): |
| 461 | repo = self.org.create_repo(name="TestPyGithub", auto_init=True, gitignore_template="Python") |
| 462 | self.assertEqual(repo.url, "https://api.github.com/repos/BeaverSoftware/TestPyGithub") |
| 463 | self.assertTrue(repo.has_pages) |
| 464 | self.assertTrue(repo.has_wiki) |
| 465 | |
| 466 | def testCreateFork(self): |
| 467 | pygithub = self.g.get_user("jacquev6").get_repo("PyGithub") |
nothing calls this directly
no test coverage detected