Codebase list logbook / e34acae9-f9c1-4d2a-a7b9-91f24ff2b00b/main benchmark / bench_test_handler.py
e34acae9-f9c1-4d2a-a7b9-91f24ff2b00b/main

Tree @e34acae9-f9c1-4d2a-a7b9-91f24ff2b00b/main (Download .tar.gz)

bench_test_handler.py @e34acae9-f9c1-4d2a-a7b9-91f24ff2b00b/mainraw · history · blame

"""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')