summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2018-12-27 20:59:10 -0500
committerTim Graham <timograham@gmail.com>2019-01-17 11:15:27 -0500
commitda1de1615c4d498d7de015dc0028ad4be220df15 (patch)
treeaf53aab86e60675fb84ebd97fc2e4785fb5e1eb2 /tests
parent6079ed82f43d8cc4b2c07eb36bc14efa0a1a5c17 (diff)
Refs #28750 -- Removed suppport for model Meta.manager_inheritance_from_future.
Diffstat (limited to 'tests')
-rw-r--r--tests/model_meta/test_manager_inheritance_from_future.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/model_meta/test_manager_inheritance_from_future.py b/tests/model_meta/test_manager_inheritance_from_future.py
deleted file mode 100644
index 2359489283..0000000000
--- a/tests/model_meta/test_manager_inheritance_from_future.py
+++ /dev/null
@@ -1,15 +0,0 @@
-from django.db import models
-from django.test import SimpleTestCase
-from django.test.utils import isolate_apps
-
-
-@isolate_apps('model_meta')
-class TestManagerInheritanceFromFuture(SimpleTestCase):
- def test_defined(self):
- """
- Meta.manager_inheritance_from_future can be defined for backwards
- compatibility with Django 1.11.
- """
- class FuturisticModel(models.Model):
- class Meta:
- manager_inheritance_from_future = True # No error raised.