(self)
| 419 | self.assertEqual(team.id, 141496) |
| 420 | |
| 421 | def testCreateHookWithMinimalParameters(self): |
| 422 | hook = self.org.create_hook("web", {"url": "http://foobar.com"}) |
| 423 | self.assertEqual(hook.id, 257967) |
| 424 | |
| 425 | def testCreateHookWithAllParameters(self): |
| 426 | hook = self.org.create_hook("web", {"url": "http://foobar.com"}, ["fork"], False) |
nothing calls this directly
no test coverage detected