Updated test URL patterns to use path() and re_path().

This commit is contained in:
Tim Graham 2018-12-07 17:52:28 -05:00
parent 1136d57f01
commit 043bd70942
104 changed files with 692 additions and 673 deletions

View file

@ -1,4 +1,4 @@
from django.conf.urls import include, url
from django.urls import include, path
from django.views import View
@ -15,11 +15,11 @@ class View3(View):
nested = ([
url(r'^view1/$', view1, name='view1'),
url(r'^view3/$', View3.as_view(), name='view3'),
path('view1/', view1, name='view1'),
path('view3/', View3.as_view(), name='view3'),
], 'backend')
urlpatterns = [
url(r'^some/path/', include(nested, namespace='nested')),
url(r'^view2/$', view2, name='view2'),
path('some/path/', include(nested, namespace='nested')),
path('view2/', view2, name='view2'),
]