mirror of
https://github.com/encode/django-rest-framework.git
synced 2025-03-09 14:05:47 +03:00
* Add failing test for #5395 * Add data filter for use in templates Closes #5395 * Fix isort
12 lines
267 B
Python
12 lines
267 B
Python
"""
|
|
URLConf for test suite.
|
|
|
|
We need only the docs urls for DocumentationRenderer tests.
|
|
"""
|
|
from django.conf.urls import url
|
|
from rest_framework.documentation import include_docs_urls
|
|
|
|
urlpatterns = [
|
|
url(r'^docs/', include_docs_urls(title='Test Suite API')),
|
|
]
|