summaryrefslogtreecommitdiff
path: root/tests/check_framework/urls/cbv_as_view.py
blob: 932a2bfcc97d6f28043006ebe39ec753edb86ce6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from django.http import HttpResponse
from django.urls import path
from django.views import View


class EmptyCBV(View):
    pass


class EmptyCallableView:
    def __call__(self, request, *args, **kwargs):
        return HttpResponse()


urlpatterns = [
    path('missing_as_view', EmptyCBV),
    path('has_as_view', EmptyCBV.as_view()),
    path('callable_class', EmptyCallableView()),
]