Codebase list logbook / 71235d0b-adb4-4b86-8514-d1693dc35069/main benchmark / bench_test_handler.py
71235d0b-adb4-4b86-8514-d1693dc35069/main

Tree @71235d0b-adb4-4b86-8514-d1693dc35069/main (Download .tar.gz)

bench_test_handler.py @71235d0b-adb4-4b86-8514-d1693dc35069/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')