mirror of
				https://github.com/django/django.git
				synced 2025-10-31 01:25:32 +00:00 
			
		
		
		
	Using __str__() and then repr'ing the result looks strange and can lead to recursive rendering of forms.
		
			
				
	
	
		
			9 lines
		
	
	
		
			326 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			326 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from django.template.base import VariableDoesNotExist
 | |
| from django.test import SimpleTestCase
 | |
| 
 | |
| 
 | |
| class VariableDoesNotExistTests(SimpleTestCase):
 | |
|     def test_str(self):
 | |
|         exc = VariableDoesNotExist(msg='Failed lookup in %r', params=({'foo': 'bar'},))
 | |
|         self.assertEqual(str(exc), "Failed lookup in {'foo': 'bar'}")
 |