mirror of
https://github.com/encode/django-rest-framework.git
synced 2025-05-11 11:23:42 +03:00
modified tests.__init__ so it also test module docstrings
This commit is contained in:
parent
b117f7bd45
commit
94199a4847
|
@ -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 __doc__ as module_doc" % module)
|
||||||
exec("from djangorestframework.tests.%s import *" % module)
|
exec("from djangorestframework.tests.%s import *" % module)
|
||||||
|
__test__['%s' % module] = module_doc or ""
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user