def test_log_debug():
lvl=logging.DEBUG
msg = 'Debug Msg'
regex = '^{0}.*{1}'.format(logging.getLevelName(lvl), msg)
lpc = LinchpinCliContext()
lpc.load_config(config_path)
lpc.setup_logging()
lpc.log_debug(msg)
with open(logfile) as f:
line = f.readline()
assert_regexp_matches(line, regex)
评论列表
文章目录