Added basic tests for auth.views.password_reset

git-svn-id: http://code.djangoproject.com/svn/django/trunk@7716 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Luke Plant 2008-06-20 17:43:12 +00:00
parent 5efb9652d7
commit fad8e8f7c2
4 changed files with 90 additions and 2 deletions

View file

@ -22,4 +22,7 @@ urlpatterns = patterns('',
# test urlconf for syndication tests
(r'^syndication/', include('regressiontests.syndication.urls')),
# Other contrib apps
(r'^auth/', include('django.contrib.auth.urls')),
)