mirror of https://github.com/django/django.git
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'}")
|