(self)
| 533 | self.assertEqual(len(list(secrets)), 1) |
| 534 | |
| 535 | def testGetDependabotSecrets(self): |
| 536 | secrets = self.org.get_secrets(secret_type="dependabot") |
| 537 | self.assertEqual(len(list(secrets)), 1) |
| 538 | |
| 539 | def testGetDependabotAlerts(self): |
| 540 | alerts = self.org.get_dependabot_alerts() |
nothing calls this directly
no test coverage detected