(self)
| 685 | ) |
| 686 | |
| 687 | def test_order_by_expr_query_reuse(self): |
| 688 | qs = Author.objects.annotate(num=Count("article")).order_by( |
| 689 | F("num").desc(), "pk" |
| 690 | ) |
| 691 | self.assertCountEqual(qs, qs.iterator()) |
| 692 | |
| 693 | |
| 694 | class TotallyOrderedTests(SimpleTestCase): |