Skip to content

Commit d9272c0

Browse files
committed
making room for mptt tests
1 parent 0ec8501 commit d9272c0

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

polymorphic_tree/tests/test_models.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class ModelY(Base):
5353
field_y = models.CharField(max_length=10)
5454

5555

56-
class PolymorphicTreeTests(TestCase):
56+
class PolymorphicTests(TestCase):
5757
"""
5858
Test Suite, largely derived from django-polymorphic tests
5959
@@ -184,6 +184,12 @@ def show_default_manager(instance):
184184
self.assertEqual(show_default_manager(model_2c), "<class 'polymorphic_tree.managers.PolymorphicMPTTModelManager'> <class 'polymorphic_tree.tests.test_models.Model2C'>")
185185

186186

187+
class MPTTTests(TestCase):
188+
""" TODO: port some tests from https://github.com/django-mptt/django-mptt/blob/master/tests/myapp/tests.py
189+
"""
190+
pass
191+
192+
187193
class RegressionTests(TestCase):
188194

189195
def test_sibling_methods(self):

0 commit comments

Comments
 (0)