mirror of
https://github.com/django/django.git
synced 2024-12-24 18:16:19 +00:00
12 lines
420 B
Python
12 lines
420 B
Python
from django.db.models.base import ModelState, ModelStateCacheDescriptor
|
|
from django.test import SimpleTestCase
|
|
|
|
|
|
class ModelStateTests(SimpleTestCase):
|
|
|
|
def test_fields_cache_descriptor(self):
|
|
self.assertIsInstance(ModelState.fields_cache, ModelStateCacheDescriptor)
|
|
|
|
def test_related_managers_descriptor(self):
|
|
self.assertIsInstance(ModelState.related_managers_cache, ModelStateCacheDescriptor)
|