1
0
mirror of https://github.com/django/django.git synced 2024-11-18 15:34:16 +00:00
django/tests/logging_tests/views.py
2016-04-20 20:56:40 -04:00

17 lines
346 B
Python

from __future__ import unicode_literals
from django.core.exceptions import DisallowedHost, SuspiciousOperation
from django.http import HttpResponse
def innocent(request):
return HttpResponse('innocent')
def suspicious(request):
raise SuspiciousOperation('dubious')
def suspicious_spec(request):
raise DisallowedHost('dubious')