Fixed typo in docstring of get_latest model unit test
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3683 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
a4bd32770c
commit
fe5462e57a
|
@ -3,9 +3,9 @@
|
||||||
|
|
||||||
Models can have a ``get_latest_by`` attribute, which should be set to the name
|
Models can have a ``get_latest_by`` attribute, which should be set to the name
|
||||||
of a DateField or DateTimeField. If ``get_latest_by`` exists, the model's
|
of a DateField or DateTimeField. If ``get_latest_by`` exists, the model's
|
||||||
module will get a ``get_latest()`` function, which will return the latest
|
manager will get a ``latest()`` method, which will return the latest object in
|
||||||
object in the database according to that field. "Latest" means "having the
|
the database according to that field. "Latest" means "having the date farthest
|
||||||
date farthest into the future."
|
into the future."
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from django.db import models
|
from django.db import models
|
||||||
|
@ -30,7 +30,7 @@ class Person(models.Model):
|
||||||
return self.name
|
return self.name
|
||||||
|
|
||||||
__test__ = {'API_TESTS':"""
|
__test__ = {'API_TESTS':"""
|
||||||
# Because no Articles exist yet, get_latest() raises ArticleDoesNotExist.
|
# Because no Articles exist yet, latest() raises ArticleDoesNotExist.
|
||||||
>>> Article.objects.latest()
|
>>> Article.objects.latest()
|
||||||
Traceback (most recent call last):
|
Traceback (most recent call last):
|
||||||
...
|
...
|
||||||
|
|
Loading…
Reference in New Issue