Fixed auth context processor tests, which were not running at all previously.

It seems they were accidentally disabled following being moved from
regressiontests in [15990]

git-svn-id: http://code.djangoproject.com/svn/django/trunk@16304 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Luke Plant 2011-05-31 15:19:19 +00:00
parent 93e9d91501
commit 4531767700
9 changed files with 20 additions and 5 deletions

View file

@ -1 +0,0 @@
{% for m in messages %}{{ m }}{% endfor %}

View file

@ -1 +0,0 @@
{% if perms.auth %}Has auth permissions{% endif %}

View file

@ -1 +0,0 @@
{% if session_accessed %}Session accessed{% else %}Session not accessed{% endif %}

View file

@ -1,4 +0,0 @@
{% load url from future %}unicode: {{ user }}
id: {{ user.id }}
username: {{ user.username }}
url: {% url 'userpage' user %}