(self)
| 2670 | |
| 2671 | class EmptyQuerySetTests(SimpleTestCase): |
| 2672 | def test_emptyqueryset_values(self): |
| 2673 | # #14366 -- Calling .values() on an empty QuerySet and then cloning |
| 2674 | # that should not cause an error |
| 2675 | self.assertCountEqual(Number.objects.none().values("num").order_by("num"), []) |
| 2676 | |
| 2677 | def test_values_subquery(self): |
| 2678 | self.assertCountEqual( |