mirror of https://github.com/django/django.git
Refs #24377 -- Added assertions for model inlines with primary key that has a default.
This ensures that a model field default is ignored.
This commit is contained in:
parent
f64fd47a76
commit
b91d62cca0
|
@ -43,6 +43,8 @@ class InlineFormsetTests(TestCase):
|
|||
}
|
||||
)
|
||||
self.assertTrue(formset.is_valid())
|
||||
self.assertIsNone(formset.instance.uuid)
|
||||
self.assertIsNone(formset.forms[0].instance.parent_id)
|
||||
|
||||
def test_inlineformset_factory_nulls_default_pks_uuid_parent_auto_child(self):
|
||||
"""
|
||||
|
|
Loading…
Reference in New Issue