(self)
| 430 | self.assertEqual(hook.id, 257967) |
| 431 | |
| 432 | def testCreateHookWithAllParameters(self): |
| 433 | hook = self.repo.create_hook("web", {"url": "http://foobar.com"}, ["fork"], False) |
| 434 | self.assertTrue(hook.active) # WTF |
| 435 | self.assertEqual(hook.id, 257993) |
| 436 | |
| 437 | def testCreateGitRef(self): |
| 438 | ref = self.repo.create_git_ref( |
nothing calls this directly
no test coverage detected