(self)
| 423 | self.assertEqual(hook.id, 257967) |
| 424 | |
| 425 | def testCreateHookWithAllParameters(self): |
| 426 | hook = self.org.create_hook("web", {"url": "http://foobar.com"}, ["fork"], False) |
| 427 | self.assertTrue(hook.active) |
| 428 | self.assertEqual(hook.id, 257993) |
| 429 | |
| 430 | def testCreateRepoWithMinimalArguments(self): |
| 431 | repo = self.org.create_repo(name="TestPyGithub") |
nothing calls this directly
no test coverage detected