Added model unit tests for year, month and day lookup. Refs #659
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1033 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
546e368d0b
commit
3226127aa2
|
@ -51,6 +51,17 @@ datetime.datetime(2005, 7, 28, 0, 0)
|
||||||
<Article object>
|
<Article object>
|
||||||
>>> articles.get_object(pub_date__year=2005)
|
>>> articles.get_object(pub_date__year=2005)
|
||||||
<Article object>
|
<Article object>
|
||||||
|
>>> articles.get_object(pub_date__year=2005, pub_date__month=7)
|
||||||
|
<Article object>
|
||||||
|
>>> articles.get_object(pub_date__year=2005, pub_date__month=7, pub_date__day=28)
|
||||||
|
<Article object>
|
||||||
|
|
||||||
|
>>> articles.get_list(pub_date__year=2005)
|
||||||
|
[<Article object>]
|
||||||
|
>>> articles.get_list(pub_date__year=2004)
|
||||||
|
[]
|
||||||
|
>>> articles.get_list(pub_date__year=2005, pub_date__month=7)
|
||||||
|
[<Article object>]
|
||||||
|
|
||||||
# Django raises an ArticleDoesNotExist exception for get_object()
|
# Django raises an ArticleDoesNotExist exception for get_object()
|
||||||
>>> articles.get_object(id__exact=2)
|
>>> articles.get_object(id__exact=2)
|
||||||
|
@ -58,6 +69,11 @@ Traceback (most recent call last):
|
||||||
...
|
...
|
||||||
ArticleDoesNotExist: Article does not exist for {'id__exact': 2}
|
ArticleDoesNotExist: Article does not exist for {'id__exact': 2}
|
||||||
|
|
||||||
|
>>> articles.get_object(pub_date__year=2005, pub_date__month=8)
|
||||||
|
Traceback (most recent call last):
|
||||||
|
...
|
||||||
|
ArticleDoesNotExist: Article does not exist for ...
|
||||||
|
|
||||||
# Lookup by a primary key is the most common case, so Django provides a
|
# Lookup by a primary key is the most common case, so Django provides a
|
||||||
# shortcut for primary-key exact lookups.
|
# shortcut for primary-key exact lookups.
|
||||||
# The following is identical to articles.get_object(id__exact=1).
|
# The following is identical to articles.get_object(id__exact=1).
|
||||||
|
|
Loading…
Reference in New Issue