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:
Adrian Holovaty 2005-09-02 20:37:24 +00:00
parent 5bdf1da730
commit 95e8688d7f
1 changed files with 5 additions and 0 deletions

View File

@ -55,4 +55,9 @@ API_TESTS = """
# Use the "offset" parameter with "limit" to offset the result list.
>>> articles.get_list(order_by=['headline'], offset=1, limit=2)
[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=['?'])
[...]
"""