summaryrefslogtreecommitdiff
path: root/tests/urls.py
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2007-05-10 13:46:15 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2007-05-10 13:46:15 +0000
commit70902908c728264f65df40f0aec8474cd7d672c8 (patch)
tree4eecc5d75c666d76b82ec492dc2a7952801afb10 /tests/urls.py
parentc7db4beb624cbae2a303cf928b9ba0721c70fc75 (diff)
downloaddjango-70902908c728264f65df40f0aec8474cd7d672c8.tar.gz
Improved error reporting for assertions where there are no form errors, or a non-existent field has been provided. Also created a test client regression test, to hold the tests validating the failure cases of the TestCase assertions.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5181 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/urls.py')
-rw-r--r--tests/urls.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/urls.py b/tests/urls.py
index 9dcdca944e..dd475b0ea7 100644
--- a/tests/urls.py
+++ b/tests/urls.py
@@ -3,6 +3,7 @@ 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'}),