mirror of
https://github.com/django/django.git
synced 2024-11-18 15:34:16 +00:00
7c4289d0b9
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'}")
|