summaryrefslogtreecommitdiff
path: root/tests/aggregation_regress
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2014-10-15 15:52:18 +0200
committerClaude Paroz <claude@2xlibre.net>2014-10-16 09:27:20 +0200
commit374c14b7fd8a7ba06cebfa83dd40915a50796d3e (patch)
tree3b95404984198c5ad330add30e4d50b52dde4676 /tests/aggregation_regress
parent947af46db3c285edd3679106d374b258d491ecb8 (diff)
Fixed #23659 -- Kept annotate() args ordering
Thanks Loic Bistuer and Simon Charette for the review.
Diffstat (limited to 'tests/aggregation_regress')
-rw-r--r--tests/aggregation_regress/tests.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/aggregation_regress/tests.py b/tests/aggregation_regress/tests.py
index 4955573161..1e2564ea44 100644
--- a/tests/aggregation_regress/tests.py
+++ b/tests/aggregation_regress/tests.py
@@ -740,6 +740,17 @@ class AggregationTests(TestCase):
list(qs), list(Book.objects.values_list("name", flat=True))
)
+ def test_values_list_annotation_args_ordering(self):
+ """
+ Annotate *args ordering should be preserved in values_list results.
+ **kwargs comes after *args.
+ Regression test for #23659.
+ """
+ books = Book.objects.values_list("publisher__name").annotate(
+ Count("id"), Avg("price"), Avg("authors__age"), avg_pgs=Avg("pages")
+ ).order_by("-publisher__name")
+ self.assertEqual(books[0], ('Sams', 1, 23.09, 45.0, 528.0))
+
def test_annotation_disjunction(self):
qs = Book.objects.annotate(n_authors=Count("authors")).filter(
Q(n_authors=2) | Q(name="Python Web Development with Django")