mirror of
https://github.com/django/django.git
synced 2025-07-29 16:14:18 +00:00
Refs #31936 -- Added tests for __in lookup on JSONField key transforms with booleans.
This commit is contained in:
parent
562898034f
commit
037607ff19
1 changed files with 2 additions and 0 deletions
|
@ -779,6 +779,8 @@ class TestQuerying(TestCase):
|
|||
('value__bar__in', [['foo', 'bar']], [self.objs[7]]),
|
||||
('value__bar__in', [['foo', 'bar'], ['a']], [self.objs[7]]),
|
||||
('value__bax__in', [{'foo': 'bar'}, {'a': 'b'}], [self.objs[7]]),
|
||||
('value__h__in', [True, 'foo'], [self.objs[4]]),
|
||||
('value__i__in', [False, 'foo'], [self.objs[4]]),
|
||||
]
|
||||
for lookup, value, expected in tests:
|
||||
with self.subTest(lookup=lookup, value=value):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue