summaryrefslogtreecommitdiff
path: root/tests/handlers/urls.py
blob: 1a228590931a8c1e15e9d4cb93d0bf7fc3f684e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
from django.conf.urls import url

from . import views

urlpatterns = [
    url(r'^regular/$', views.regular),
    url(r'^streaming/$', views.streaming),
    url(r'^in_transaction/$', views.in_transaction),
    url(r'^not_in_transaction/$', views.not_in_transaction),
    url(r'^suspicious/$', views.suspicious),
    url(r'^malformed_post/$', views.malformed_post),
    url(r'^httpstatus_enum/$', views.httpstatus_enum),
]