summaryrefslogtreecommitdiff
path: root/tests/regressiontests/context_processors
diff options
context:
space:
mode:
authorLuke Plant <L.Plant.98@cantab.net>2011-05-31 15:19:19 +0000
committerLuke Plant <L.Plant.98@cantab.net>2011-05-31 15:19:19 +0000
commit45317677008a71c261b8c00388e8c2555a96598c (patch)
treed572af5bb7f7d57f127b9297a3fdd3ec52561d5d /tests/regressiontests/context_processors
parent93e9d91501914e37ef8dfe7a9e355be9d2e9c538 (diff)
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
Diffstat (limited to 'tests/regressiontests/context_processors')
-rw-r--r--tests/regressiontests/context_processors/templates/context_processors/auth_attrs_access.html1
-rw-r--r--tests/regressiontests/context_processors/templates/context_processors/auth_attrs_messages.html1
-rw-r--r--tests/regressiontests/context_processors/templates/context_processors/auth_attrs_no_access.html1
-rw-r--r--tests/regressiontests/context_processors/templates/context_processors/auth_attrs_perms.html1
-rw-r--r--tests/regressiontests/context_processors/templates/context_processors/auth_attrs_test_access.html1
-rw-r--r--tests/regressiontests/context_processors/templates/context_processors/auth_attrs_user.html4
6 files changed, 0 insertions, 9 deletions
diff --git a/tests/regressiontests/context_processors/templates/context_processors/auth_attrs_access.html b/tests/regressiontests/context_processors/templates/context_processors/auth_attrs_access.html
deleted file mode 100644
index b5c65db28d..0000000000
--- a/tests/regressiontests/context_processors/templates/context_processors/auth_attrs_access.html
+++ /dev/null
@@ -1 +0,0 @@
-{{ user }}
diff --git a/tests/regressiontests/context_processors/templates/context_processors/auth_attrs_messages.html b/tests/regressiontests/context_processors/templates/context_processors/auth_attrs_messages.html
deleted file mode 100644
index 7b7e448ad2..0000000000
--- a/tests/regressiontests/context_processors/templates/context_processors/auth_attrs_messages.html
+++ /dev/null
@@ -1 +0,0 @@
-{% for m in messages %}{{ m }}{% endfor %}
diff --git a/tests/regressiontests/context_processors/templates/context_processors/auth_attrs_no_access.html b/tests/regressiontests/context_processors/templates/context_processors/auth_attrs_no_access.html
deleted file mode 100644
index 8d1c8b69c3..0000000000
--- a/tests/regressiontests/context_processors/templates/context_processors/auth_attrs_no_access.html
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/tests/regressiontests/context_processors/templates/context_processors/auth_attrs_perms.html b/tests/regressiontests/context_processors/templates/context_processors/auth_attrs_perms.html
deleted file mode 100644
index a5db868e9e..0000000000
--- a/tests/regressiontests/context_processors/templates/context_processors/auth_attrs_perms.html
+++ /dev/null
@@ -1 +0,0 @@
-{% if perms.auth %}Has auth permissions{% endif %}
diff --git a/tests/regressiontests/context_processors/templates/context_processors/auth_attrs_test_access.html b/tests/regressiontests/context_processors/templates/context_processors/auth_attrs_test_access.html
deleted file mode 100644
index a28ff937f8..0000000000
--- a/tests/regressiontests/context_processors/templates/context_processors/auth_attrs_test_access.html
+++ /dev/null
@@ -1 +0,0 @@
-{% if session_accessed %}Session accessed{% else %}Session not accessed{% endif %}
diff --git a/tests/regressiontests/context_processors/templates/context_processors/auth_attrs_user.html b/tests/regressiontests/context_processors/templates/context_processors/auth_attrs_user.html
deleted file mode 100644
index 5df2a344cc..0000000000
--- a/tests/regressiontests/context_processors/templates/context_processors/auth_attrs_user.html
+++ /dev/null
@@ -1,4 +0,0 @@
-{% load url from future %}unicode: {{ user }}
-id: {{ user.id }}
-username: {{ user.username }}
-url: {% url 'userpage' user %}