(self)
| 428 | self.assertEqual(hook.id, 257993) |
| 429 | |
| 430 | def testCreateRepoWithMinimalArguments(self): |
| 431 | repo = self.org.create_repo(name="TestPyGithub") |
| 432 | self.assertEqual(repo.url, "https://api.github.com/repos/BeaverSoftware/TestPyGithub") |
| 433 | self.assertTrue(repo.has_wiki) |
| 434 | self.assertTrue(repo.has_pages) |
| 435 | |
| 436 | def testCreateRepoWithAllArguments(self): |
| 437 | team = self.org.get_team(141496) |
nothing calls this directly
no test coverage detected