(self)
| 413 | self.assertFalse(github.Requester.Requester.isPrimaryRateLimitError(message), message) |
| 414 | |
| 415 | def testIsSecondaryRateLimitError(self): |
| 416 | for message in self.SecondaryRateLimitErrors: |
| 417 | self.assertTrue(github.Requester.Requester.isSecondaryRateLimitError(message), message) |
| 418 | for message in self.OtherErrors + self.PrimaryRateLimitErrors: |
| 419 | self.assertFalse(github.Requester.Requester.isSecondaryRateLimitError(message), message) |
| 420 | |
| 421 | def assertException(self, exception, exception_type, message, status, data, headers, string): |
| 422 | self.assertIsInstance(exception, exception_type) |
nothing calls this directly
no test coverage detected