From fa8662a13f0826a2f7eb4fb727307ad45c3e0175 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Mon, 26 Sep 2005 05:00:29 +0000 Subject: [PATCH] Added unit test to confirm #558 git-svn-id: http://code.djangoproject.com/svn/django/trunk@696 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/testapp/models/subclassing.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/tests/testapp/models/subclassing.py b/tests/testapp/models/subclassing.py index 7ec8d37ff9..e0dad26acb 100644 --- a/tests/testapp/models/subclassing.py +++ b/tests/testapp/models/subclassing.py @@ -54,6 +54,13 @@ class ArticleWithChangedMeta(ArticleWithOrdering): module_name = 'subarticles5' ordering = ('headline', 'pub_date') +# These two models don't define a module_name. +class NoModuleNameFirst(Article): + section = meta.CharField(maxlength=30) + +class NoModuleNameSecond(Article): + section = meta.CharField(maxlength=30) + API_TESTS = """ # No data is in the system yet. >>> subarticles1.get_list() @@ -165,4 +172,9 @@ datetime.date(2005, 8, 22) # by headline ASC instead of pub_date DESC. >>> subarticles5.get_list() [A, B, C] + +>>> nomodulenamefirsts.get_list() +[] +>>> nomodulenameseconds.get_list() +[] """