|
@@ -893,6 +893,15 @@ class OtherModelTests(SimpleTestCase):
|
|
|
with register_lookup(models.CharField, Lower):
|
|
|
self.assertEqual(Model.check(), [])
|
|
|
|
|
|
+ def test_ordering_pointing_to_lookup_not_transform(self):
|
|
|
+ class Model(models.Model):
|
|
|
+ test = models.CharField(max_length=100)
|
|
|
+
|
|
|
+ class Meta:
|
|
|
+ ordering = ('test__isnull',)
|
|
|
+
|
|
|
+ self.assertEqual(Model.check(), [])
|
|
|
+
|
|
|
def test_ordering_pointing_to_related_model_pk(self):
|
|
|
class Parent(models.Model):
|
|
|
pass
|