1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed #29966 -- Added tests for BaseHandler's "The view didn't return an HttpResponse object" error.

This commit is contained in:
Hasan Ramezani
2018-11-24 01:19:02 +01:00
committed by Tim Graham
parent fc71bb11b1
commit 11a9017179
3 changed files with 22 additions and 0 deletions

View File

@@ -1,9 +1,12 @@
from django.conf.urls import url
from django.urls import path
from . import views
urlpatterns = [
url(r'^regular/$', views.regular),
path('no_response_fbv/', views.no_response),
path('no_response_cbv/', views.NoResponse()),
url(r'^streaming/$', views.streaming),
url(r'^in_transaction/$', views.in_transaction),
url(r'^not_in_transaction/$', views.not_in_transaction),