(self)
| 557 | self.assertException(exc, github.GithubException, None, status, {}, {}, f"{status} {{}}") |
| 558 | |
| 559 | def testShouldCreateExceptionWithoutOutput(self): |
| 560 | for status in range(400, 600): |
| 561 | with self.subTest(status=status): |
| 562 | exc = self.g._Github__requester.createException(status, {}, None) |
| 563 | self.assertException(exc, github.GithubException, None, status, None, {}, f"{status}") |
| 564 | |
| 565 | |
| 566 | class RequesterThrottleTestCase(Framework.TestCase): |
nothing calls this directly
no test coverage detected