(self)
| 5225 | ALLOWED_TYPES = ('processes',) |
| 5226 | |
| 5227 | def test_enable_logging(self): |
| 5228 | logger = multiprocessing.get_logger() |
| 5229 | logger.setLevel(util.SUBWARNING) |
| 5230 | self.assertIsNotNone(logger) |
| 5231 | logger.debug('this will not be printed') |
| 5232 | logger.info('nor will this') |
| 5233 | logger.setLevel(LOG_LEVEL) |
| 5234 | |
| 5235 | @classmethod |
| 5236 | def _test_level(cls, conn): |
nothing calls this directly
no test coverage detected