(self)
| 230 | self.assertEqual(hook.active, True) |
| 231 | |
| 232 | def testCreateTeam(self): |
| 233 | team = self.org.create_team("Team created by PyGithub") |
| 234 | self.assertEqual(team.id, 189850) |
| 235 | |
| 236 | def testCreateTeamWithAllArguments(self): |
| 237 | repo = self.org.get_repo("FatherBeaver") |
nothing calls this directly
no test coverage detected