diff options
Diffstat (limited to 'tests/urls.py')
| -rw-r--r-- | tests/urls.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/urls.py b/tests/urls.py index 39d5aaee6b..dd475b0ea7 100644 --- a/tests/urls.py +++ b/tests/urls.py @@ -3,8 +3,12 @@ from django.conf.urls.defaults import * urlpatterns = patterns('', # test_client modeltest urls (r'^test_client/', include('modeltests.test_client.urls')), + (r'^test_client_regress/', include('regressiontests.test_client_regress.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.login'), + (r'^accounts/logout/$', 'django.contrib.auth.views.logout'), + + # test urlconf for {% url %} template tag + (r'^url_tag/', include('regressiontests.templates.urls')), ) |
