aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/tests
diff options
context:
space:
mode:
authorTom Christie2012-09-28 11:53:51 +0100
committerTom Christie2012-09-28 11:53:51 +0100
commit84f775803994ccd82671dd4a6f9b4d87aa36dc31 (patch)
treea28f8213f0ebce048b163d79d5c3e182b3f20171 /rest_framework/tests
parentaeeb68f68a8f5a3deb9f1ad06f11dbbd9a8f1ff6 (diff)
downloaddjango-rest-framework-84f775803994ccd82671dd4a6f9b4d87aa36dc31.tar.bz2
Remove support for doctests
Diffstat (limited to 'rest_framework/tests')
-rw-r--r--rest_framework/tests/__init__.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/rest_framework/tests/__init__.py b/rest_framework/tests/__init__.py
index ba3a27c0..85ee18b6 100644
--- a/rest_framework/tests/__init__.py
+++ b/rest_framework/tests/__init__.py
@@ -7,6 +7,4 @@ modules = [filename.rsplit('.', 1)[0]
__test__ = dict()
for module in modules:
- exec("from rest_framework.tests.%s import __doc__ as module_doc" % module)
exec("from rest_framework.tests.%s import *" % module)
- __test__[module] = module_doc or ""