(self)
| 2365 | self.assertIs(Annotation.objects.order_by("id").ordered, True) |
| 2366 | |
| 2367 | def test_empty_queryset(self): |
| 2368 | self.assertIs(Annotation.objects.none().ordered, True) |
| 2369 | |
| 2370 | def test_order_by_extra(self): |
| 2371 | self.assertIs(Annotation.objects.extra(order_by=["id"]).ordered, True) |