Codebase list logbook / lintian-fixes/main benchmark / bench_test_handler.py
lintian-fixes/main

Tree @lintian-fixes/main (Download .tar.gz)

bench_test_handler.py @lintian-fixes/main

9af17e1
 
 
 
 
 
 
 
 
 
 
"""Tests the test handler"""
from logbook import Logger, TestHandler


log = Logger('Test logger')


def run():
    with TestHandler() as handler:
        for x in xrange(500):
            log.warning('this is not handled')