aboutsummaryrefslogtreecommitdiffstats
path: root/tests/views.py
diff options
context:
space:
mode:
authorAymeric Augustin2013-11-09 20:03:47 +0100
committerAymeric Augustin2013-11-10 10:39:42 +0100
commitc4e833ad77f21419b8d8239279b4bb162d01fd8f (patch)
tree5b17d28bfef86aaaf968ce6b36ab0d84c3f714bb /tests/views.py
parenta29bbc7cfcef52af29960f2a2f3d53e9c0b0015d (diff)
downloaddjango-debug-toolbar-c4e833ad77f21419b8d8239279b4bb162d01fd8f.tar.bz2
Move a test specific to the template panel in its module.
Diffstat (limited to 'tests/views.py')
-rw-r--r--tests/views.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/views.py b/tests/views.py
index 01c4971..8bbc447 100644
--- a/tests/views.py
+++ b/tests/views.py
@@ -14,11 +14,6 @@ def execute_sql(request):
list(User.objects.all())
return HttpResponse()
-
-def non_ascii_context(request):
- return render(request, 'basic.html', {'title': NonAsciiRepr()})
-
-
def regular_view(request, title):
return render(request, 'basic.html', {'title': title})