Codebase list logbook / 323a8b0f-75b0-42a3-ad20-dac8b486870f/main benchmark / bench_test_handler.py
323a8b0f-75b0-42a3-ad20-dac8b486870f/main

Tree @323a8b0f-75b0-42a3-ad20-dac8b486870f/main (Download .tar.gz)

bench_test_handler.py @323a8b0f-75b0-42a3-ad20-dac8b486870f/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')