summaryrefslogtreecommitdiff
path: root/tests/mytest.py
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2011-11-21 16:51:43 +0000
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2011-11-21 16:51:43 +0000
commit465f7a7f2b30f233b0cfc611a6411f68f58c2732 (patch)
tree2e9ddeac830fd714573c957f89e34f6db9aca166 /tests/mytest.py
parent71908d6d93695bddee1c2a363aafbb0c530e893c (diff)
downloadlogutils-465f7a7f2b30f233b0cfc611a6411f68f58c2732.tar.gz
Made ready for 0.3.2.0.3.2
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())
+
+