(self)
| 587 | self.org.invite_user(email="foo@example.com") |
| 588 | |
| 589 | def testInviteUserWithRoleAndTeam(self): |
| 590 | team = self.org.create_team("Team created by PyGithub") |
| 591 | self.org.invite_user(email="foo@example.com", role="billing_manager", teams=[team]) |
| 592 | |
| 593 | def testInviteUserAsNonOwner(self): |
| 594 | with self.assertRaises(github.GithubException) as raisedexp: |
nothing calls this directly
no test coverage detected