blob: 3662435daf8157c7e248c84d3aa26e7f92f8cc1b (
plain)
1
2
3
4
5
6
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)) ]
|