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