(self, conf, **kwargs)
| 1584 | """ |
| 1585 | |
| 1586 | def apply_config(self, conf, **kwargs): |
| 1587 | file = io.StringIO(textwrap.dedent(conf)) |
| 1588 | logging.config.fileConfig(file, encoding="utf-8", **kwargs) |
| 1589 | |
| 1590 | def test_config0_ok(self): |
| 1591 | # A simple config file which overrides the default settings. |
no test coverage detected