Add test for double-logging

This commit is contained in:
Matthias 2020-11-25 14:30:58 +01:00
parent ceb50a7807
commit 99b67348b2
1 changed files with 3 additions and 0 deletions

View File

@ -678,6 +678,9 @@ def test_set_loggers_syslog(mocker):
assert [x for x in logger.handlers if type(x) == logging.handlers.SysLogHandler]
assert [x for x in logger.handlers if type(x) == logging.StreamHandler]
assert [x for x in logger.handlers if type(x) == logging.handlers.BufferingHandler]
# setting up logging again should NOT cause the loggers to be added a second time.
setup_logging(config)
assert len(logger.handlers) == 3
# reset handlers to not break pytest
logger.handlers = orig_handlers