django-rest-framework/tests/urls.py
Adam Johnson 410575dace
Replace all url() calls with path() or re_path() (#7512)
* url() is deprecated in Django 3.1

* update given feedbacks on url() is deprecated in Django 3.1

* Fix test_urlpatterns.py to continue testing mixed re_path() and path()

* Fix one missed reference

Co-authored-by: sanjusci <sanju.sci9@gmail.com>
2020-09-08 15:32:27 +01:00

17 lines
356 B
Python

"""
URLConf for test suite.
We need only the docs urls for DocumentationRenderer tests.
"""
from django.urls import path
from rest_framework.compat import coreapi
from rest_framework.documentation import include_docs_urls
if coreapi:
urlpatterns = [
path('docs/', include_docs_urls(title='Test Suite API')),
]
else:
urlpatterns = []