[1.8.x] Added missing tests for transforms usage with subquery for PostgreSQL fields

Backport of 2a7c59cd88 from master
This commit is contained in:
Andriy Sokolovskiy 2015-06-04 16:15:25 +01:00 committed by Tim Graham
parent b4b13759f8
commit 66496c8403
2 changed files with 14 additions and 0 deletions

View file

@ -223,6 +223,14 @@ class TestQuerying(TestCase):
[instance]
)
def test_usage_in_subquery(self):
self.assertSequenceEqual(
NullableIntegerArrayModel.objects.filter(
id__in=NullableIntegerArrayModel.objects.filter(field__len=3)
),
[self.objs[3]]
)
class TestChecks(TestCase):