summaryrefslogtreecommitdiff
path: root/tests/mytest.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/mytest.py')
-rw-r--r--tests/mytest.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/mytest.py b/tests/mytest.py
new file mode 100644
index 0000000..1c3fdd6
--- /dev/null
+++ b/tests/mytest.py
@@ -0,0 +1,9 @@
+from __future__ import absolute_import
+
+from logutils.testing import TestHandler, Matcher
+
+class MyTestHandler(TestHandler):
+ def __init__(self):
+ TestHandler.__init__(self, Matcher())
+
+