Commit 94199a48 by sebpiq

modified tests.__init__ so it also test module docstrings

parent b117f7bd
...@@ -5,5 +5,10 @@ modules = [filename.rsplit('.', 1)[0] ...@@ -5,5 +5,10 @@ modules = [filename.rsplit('.', 1)[0]
for filename in os.listdir(os.path.dirname(__file__)) for filename in os.listdir(os.path.dirname(__file__))
if filename.endswith('.py') and not filename.startswith('_')] if filename.endswith('.py') and not filename.startswith('_')]
__test__ = dict()
for module in modules: for module in modules:
exec("from djangorestframework.tests.%s import *" % module) exec("from djangorestframework.tests.%s import __doc__ as module_doc" % module)
\ No newline at end of file exec("from djangorestframework.tests.%s import *" % module)
__test__['%s' % module] = module_doc or ""
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment