diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2005-09-26 05:00:29 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2005-09-26 05:00:29 +0000 |
| commit | fa8662a13f0826a2f7eb4fb727307ad45c3e0175 (patch) | |
| tree | abe22d0adf5a260f365a28cfb0c05f9115cfc5f6 | |
| parent | 871ffbe7ee30fae603cbde984ac5975ad5516aa1 (diff) | |
Added unit test to confirm #558
git-svn-id: http://code.djangoproject.com/svn/django/trunk@696 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | tests/testapp/models/subclassing.py | 12 |
1 files changed, 12 insertions, 0 deletions
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() +[] """ |
