From 95e8688d7f8c9393d0e1112b52e22e713f5fa25f Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Fri, 2 Sep 2005 20:37:24 +0000 Subject: [PATCH] Added unit test that confirms #404 git-svn-id: http://code.djangoproject.com/svn/django/trunk@614 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/testapp/models/ordering.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/testapp/models/ordering.py b/tests/testapp/models/ordering.py index b7b68b3158..6256e4daf7 100644 --- a/tests/testapp/models/ordering.py +++ b/tests/testapp/models/ordering.py @@ -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=['?']) +[...] """