mirror of
				https://github.com/django/django.git
				synced 2025-10-30 09:06:13 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			419 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			419 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from django.core.serializers.base import DeserializedObject
 | |
| from django.test import SimpleTestCase
 | |
| 
 | |
| from .models import Author
 | |
| 
 | |
| 
 | |
| class TestDeserializedObjectTests(SimpleTestCase):
 | |
|     def test_repr(self):
 | |
|         author = Author(name="John", pk=1)
 | |
|         deserial_obj = DeserializedObject(obj=author)
 | |
|         self.assertEqual(
 | |
|             repr(deserial_obj), "<DeserializedObject: serializers.Author(pk=1)>"
 | |
|         )
 |