summaryrefslogtreecommitdiff
path: root/tests/model_inheritance_regress
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2017-05-05 18:35:08 -0400
committerGitHub <noreply@github.com>2017-05-05 18:35:08 -0400
commitd66378a8b2d48d41b56ba3622189493e4edf9e5a (patch)
treefc614f23ca4b01882b19de34ec55885204b2ad87 /tests/model_inheritance_regress
parent2874531ab59d46a48e32fb553ac86499778784bc (diff)
downloaddjango-d66378a8b2d48d41b56ba3622189493e4edf9e5a.tar.gz
Fixed #28175 -- Fixed __in lookups on a foreign key when using the foreign key's parent model as the lookup value.
Thanks Simon Charette for review.
Diffstat (limited to 'tests/model_inheritance_regress')
-rw-r--r--tests/model_inheritance_regress/tests.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/model_inheritance_regress/tests.py b/tests/model_inheritance_regress/tests.py
index 87ec11a5b1..0ecaedd090 100644
--- a/tests/model_inheritance_regress/tests.py
+++ b/tests/model_inheritance_regress/tests.py
@@ -472,6 +472,12 @@ class ModelInheritanceTest(TestCase):
jane = Supplier.objects.order_by("name").select_related("restaurant")[0]
self.assertEqual(jane.restaurant.name, "Craft")
+ def test_filter_with_parent_fk(self):
+ r = Restaurant.objects.create()
+ s = Supplier.objects.create(restaurant=r)
+ # The mismatch between Restaurant and Place is intentional (#28175).
+ self.assertSequenceEqual(Supplier.objects.filter(restaurant__in=Place.objects.all()), [s])
+
def test_ptr_accessor_assigns_db(self):
r = Restaurant.objects.create()
self.assertEqual(r.place_ptr._state.db, 'default')