1
0
mirror of https://github.com/django/django.git synced 2024-11-18 07:26:04 +00:00
django/tests/admin_utils/urls.py
Claude Paroz 35c41987ec Moved LogEntry-related tests to their own test case
Thanks Tim Graham for reviewing and contributing to the patch.
Refs #21113.
2015-12-28 20:29:08 +01:00

8 lines
120 B
Python

from django.conf.urls import url
from .admin import site
urlpatterns = [
url(r'^test_admin/admin/', site.urls),
]