summaryrefslogtreecommitdiff
path: root/tests/logging_tests/urls.py
blob: 119ba9c1fb3680289ea5ef3153f95993edce2c29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from django.urls import path

from . import views

urlpatterns = [
    path("innocent/", views.innocent),
    path("redirect/", views.redirect),
    path("suspicious/", views.suspicious),
    path("suspicious_spec/", views.suspicious_spec),
    path("internal_server_error/", views.internal_server_error),
    path("uncaught_exception/", views.uncaught_exception),
    path("permission_denied/", views.permission_denied),
    path("multi_part_parser_error/", views.multi_part_parser_error),
    path("does_not_exist_raised/", views.does_not_exist_raised),
]