aboutsummaryrefslogtreecommitdiff
path: root/test/testlib/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/testlib/__init__.py')
-rw-r--r--test/testlib/__init__.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/testlib/__init__.py b/test/testlib/__init__.py
index 77512794..f364171b 100644
--- a/test/testlib/__init__.py
+++ b/test/testlib/__init__.py
@@ -8,6 +8,7 @@ import inspect
from mock import *
from asserts import *
from helper import *
+from unittest import TestCase
__all__ = [ name for name, obj in locals().items()
- if not (name.startswith('_') or inspect.ismodule(obj)) ]
+ if not (name.startswith('_') or inspect.ismodule(obj)) ]