diff options
Diffstat (limited to 'test/testlib/__init__.py')
-rw-r--r-- | test/testlib/__init__.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/testlib/__init__.py b/test/testlib/__init__.py new file mode 100644 index 00000000..3662435d --- /dev/null +++ b/test/testlib/__init__.py @@ -0,0 +1,7 @@ +import inspect +from mock import * +from asserts import * +from helper import * + +__all__ = [ name for name, obj in locals().items() + if not (name.startswith('_') or inspect.ismodule(obj)) ] |