Skip to content

Commit 20c5939

Browse files
committed
add tests for async common middleware
1 parent 0823160 commit 20c5939

File tree

5 files changed

+623
-1
lines changed

5 files changed

+623
-1
lines changed

tests/test_middlewares/extra_urls.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
from django.urls import path
2+
3+
from . import views
4+
5+
urlpatterns = [
6+
path("customurlconf/noslash", views.empty_view),
7+
path("customurlconf/slash/", views.empty_view),
8+
path("customurlconf/needsquoting#/", views.empty_view),
9+
]

0 commit comments

Comments
 (0)