Added unit test that confirms #404
git-svn-id: http://code.djangoproject.com/svn/django/trunk@614 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
5bdf1da730
commit
95e8688d7f
|
@ -55,4 +55,9 @@ API_TESTS = """
|
||||||
# Use the "offset" parameter with "limit" to offset the result list.
|
# Use the "offset" parameter with "limit" to offset the result list.
|
||||||
>>> articles.get_list(order_by=['headline'], offset=1, limit=2)
|
>>> articles.get_list(order_by=['headline'], offset=1, limit=2)
|
||||||
[Article 2, Article 3]
|
[Article 2, Article 3]
|
||||||
|
|
||||||
|
# Use '?' to order randomly. (We're using [...] in the output to indicate we
|
||||||
|
# don't know what order the output will be in.
|
||||||
|
>>> articles.get_list(order_by=['?'])
|
||||||
|
[...]
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in New Issue