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.contrib import admin
from .models import Article, ArticleProxy
site = admin.AdminSite(name='admin')
site.register(Article)
site.register(ArticleProxy)