summaryrefslogtreecommitdiff
path: root/tests/urls.py
diff options
context:
space:
mode:
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 8ca7492fb7..a8dc583aa1 100644
--- a/tests/urls.py
+++ b/tests/urls.py
@@ -5,6 +5,9 @@ urlpatterns = patterns('',
(r'^test_client/', include('modeltests.test_client.urls')),
(r'^test_client_regress/', include('regressiontests.test_client_regress.urls')),
+ # File upload test views
+ (r'^file_uploads/', include('regressiontests.file_uploads.urls')),
+
# Always provide the auth system login and logout views
(r'^accounts/login/$', 'django.contrib.auth.views.login', {'template_name': 'login.html'}),
(r'^accounts/logout/$', 'django.contrib.auth.views.logout'),