mirror of
				https://github.com/django/django.git
				synced 2025-11-03 05:13:23 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
	
		
			291 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
	
		
			291 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from django.db.models.base import ModelState, ModelStateFieldsCacheDescriptor
 | 
						|
from django.test import SimpleTestCase
 | 
						|
 | 
						|
 | 
						|
class ModelStateTests(SimpleTestCase):
 | 
						|
 | 
						|
    def test_fields_cache_descriptor(self):
 | 
						|
        self.assertIsInstance(ModelState.fields_cache, ModelStateFieldsCacheDescriptor)
 |