diff options
| author | Akash Kumar Sen <Akash-Kumar-Sen@users.noreply.github.com> | 2023-06-15 23:13:49 +0530 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2023-06-20 08:10:53 +0200 |
| commit | 82a588a6bce37e1fe0a1d266282034136460b37a (patch) | |
| tree | 4a94be2f027158a5e3887bb5d87c7e8508e0cecb /tests/invalid_models_tests | |
| parent | d6e9ec40145b9edc65e8d0c65bd3f4ef8a7a27bb (diff) | |
Fixed #34634 -- Adjusted system check for clashing fields to warn about links to common parent for MTI models.
Diffstat (limited to 'tests/invalid_models_tests')
| -rw-r--r-- | tests/invalid_models_tests/test_models.py | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/invalid_models_tests/test_models.py b/tests/invalid_models_tests/test_models.py index ffc7579e10..9e2a37b79a 100644 --- a/tests/invalid_models_tests/test_models.py +++ b/tests/invalid_models_tests/test_models.py @@ -1070,6 +1070,31 @@ class ShadowingFieldsTests(SimpleTestCase): ], ) + def test_diamond_mti_common_parent(self): + class GrandParent(models.Model): + pass + + class Parent(GrandParent): + pass + + class Child(Parent): + pass + + class MTICommonParentModel(Child, GrandParent): + pass + + self.assertEqual( + MTICommonParentModel.check(), + [ + Error( + "The field 'grandparent_ptr' clashes with the field " + "'grandparent_ptr' from model 'invalid_models_tests.parent'.", + obj=MTICommonParentModel, + id="models.E006", + ) + ], + ) + def test_id_clash(self): class Target(models.Model): pass |
