summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/model_formsets/tests.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/model_formsets/tests.py b/tests/model_formsets/tests.py
index 19c0a6d9d5..58d8bcc9ab 100644
--- a/tests/model_formsets/tests.py
+++ b/tests/model_formsets/tests.py
@@ -815,6 +815,12 @@ class ModelFormsetTest(TestCase):
formset = AuthorBooksFormSet(data, instance=author, queryset=custom_qs)
self.assertTrue(formset.is_valid())
+ def test_inline_formsets_with_wrong_fk_name(self):
+ """ Regression for #23451 """
+ message = "fk_name 'title' is not a ForeignKey to 'model_formsets.Author'."
+ with self.assertRaisesMessage(ValueError, message):
+ inlineformset_factory(Author, Book, fields="__all__", fk_name='title')
+
def test_custom_pk(self):
# We need to ensure that it is displayed