(self)
| 551 | ) |
| 552 | |
| 553 | def testShouldCreateExceptionWithoutMessage(self): |
| 554 | for status in range(400, 600): |
| 555 | with self.subTest(status=status): |
| 556 | exc = self.g._Github__requester.createException(status, {}, {}) |
| 557 | self.assertException(exc, github.GithubException, None, status, {}, {}, f"{status} {{}}") |
| 558 | |
| 559 | def testShouldCreateExceptionWithoutOutput(self): |
| 560 | for status in range(400, 600): |
nothing calls this directly
no test coverage detected