summaryrefslogtreecommitdiff
path: root/tests/urls.py
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2010-01-10 17:35:01 +0000
committerAdrian Holovaty <adrian@holovaty.com>2010-01-10 17:35:01 +0000
commitca6f64a43f668749c395c8c47dbb47aa175dfe25 (patch)
treed54e6ccc66187e89f45e60fce8f8887742de87bc /tests/urls.py
parenta7dc2c06532586f8988d04d8f697c4ebfcabfde8 (diff)
downloaddjango-ca6f64a43f668749c395c8c47dbb47aa175dfe25.tar.gz
Fixed #6094 -- Middleware exceptions are now caught by the core handler. Thanks, isagalaev
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12165 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/urls.py')
-rw-r--r--tests/urls.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/urls.py b/tests/urls.py
index 4d123a2e8a..01d6408c5a 100644
--- a/tests/urls.py
+++ b/tests/urls.py
@@ -36,6 +36,9 @@ urlpatterns = patterns('',
# conditional get views
(r'condition/', include('regressiontests.conditional_processing.urls')),
+ # middleware exceptions tests
+ (r'middleware_exceptions/', include('regressiontests.middleware_exceptions.urls')),
+
# special headers views
(r'special_headers/', include('regressiontests.special_headers.urls')),
)