(self)
| 426 | ) |
| 427 | |
| 428 | def testCreateHookWithMinimalParameters(self): |
| 429 | hook = self.repo.create_hook("web", {"url": "http://foobar.com"}) |
| 430 | self.assertEqual(hook.id, 257967) |
| 431 | |
| 432 | def testCreateHookWithAllParameters(self): |
| 433 | hook = self.repo.create_hook("web", {"url": "http://foobar.com"}, ["fork"], False) |
nothing calls this directly
no test coverage detected