(self)
| 564 | self.assertEqual(alert_list[0].repository.full_name, "BeaverSoftware/PyGithub") |
| 565 | |
| 566 | def testGetSecretsFail(self): |
| 567 | with self.assertRaises(AssertionError) as raisedexp: |
| 568 | self.org.get_secrets(secret_type="secret") |
| 569 | self.assertEqual("secret_type should be actions or dependabot", str(raisedexp.exception)) |
| 570 | |
| 571 | def testInviteUserWithNeither(self): |
| 572 | with self.assertRaises(AssertionError) as raisedexp: |
nothing calls this directly
no test coverage detected