summaryrefslogtreecommitdiff
path: root/tests/model_forms
diff options
context:
space:
mode:
Diffstat (limited to 'tests/model_forms')
-rw-r--r--tests/model_forms/tests.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/model_forms/tests.py b/tests/model_forms/tests.py
index 98de9c95f2..86a027e4d4 100644
--- a/tests/model_forms/tests.py
+++ b/tests/model_forms/tests.py
@@ -2377,6 +2377,17 @@ class StumpJokeForm(forms.ModelForm):
fields = '__all__'
+class CustomFieldWithQuerysetButNoLimitChoicesTo(forms.Field):
+ queryset = 42
+
+
+class StumpJokeWithCustomFieldForm(forms.ModelForm):
+ custom = CustomFieldWithQuerysetButNoLimitChoicesTo()
+ class Meta:
+ model = StumpJoke
+ fields = () # We don't need any fields from the model
+
+
class LimitChoicesToTest(TestCase):
"""
Tests the functionality of ``limit_choices_to``.
@@ -2407,6 +2418,14 @@ class LimitChoicesToTest(TestCase):
self.assertIn(self.threepwood, stumpjokeform.fields['has_fooled_today'].queryset)
self.assertNotIn(self.marley, stumpjokeform.fields['has_fooled_today'].queryset)
+ def test_custom_field_with_queryset_but_no_limit_choices_to(self):
+ """
+ Regression test for #23795: Make sure a custom field with a `queryset`
+ attribute but no `limit_choices_to` still works.
+ """
+ f = StumpJokeWithCustomFieldForm()
+ self.assertEqual(f.fields['custom'].queryset, 42)
+
class FormFieldCallbackTests(TestCase):