1
0
mirror of https://github.com/django/django.git synced 2025-10-24 06:06:09 +00:00

Moved LogEntry-related tests to their own test case

Thanks Tim Graham for reviewing and contributing to the patch.
Refs #21113.
This commit is contained in:
Claude Paroz
2015-12-26 18:46:51 +01:00
parent 0d855990f7
commit 35c41987ec
6 changed files with 178 additions and 124 deletions

View File

@@ -0,0 +1,7 @@
from django.conf.urls import url
from .admin import site
urlpatterns = [
url(r'^test_admin/admin/', site.urls),
]