From 179ee13eb37348cd87169a198aec18fedccc8668 Mon Sep 17 00:00:00 2001 From: David Smith Date: Fri, 29 Jan 2021 19:21:26 +0000 Subject: Refs #24121 -- Added __repr__() to FilterExpression, Lexer, Parser, and Token. --- tests/template_tests/test_parser.py | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/template_tests/test_parser.py b/tests/template_tests/test_parser.py index 2370e0263e..6c8b70d16f 100644 --- a/tests/template_tests/test_parser.py +++ b/tests/template_tests/test_parser.py @@ -3,7 +3,7 @@ Testing some internals of the template processing. These are *not* examples to b """ from django.template import Library, TemplateSyntaxError from django.template.base import ( - FilterExpression, Parser, Token, TokenType, Variable, + FilterExpression, Lexer, Parser, Token, TokenType, Variable, ) from django.template.defaultfilters import register as filter_library from django.test import SimpleTestCase @@ -19,6 +19,22 @@ class ParserTests(SimpleTestCase): split = token.split_contents() self.assertEqual(split, ["sometag", '_("Page not found")', 'value|yesno:_("yes,no")']) + def test_repr(self): + token = Token(TokenType.BLOCK, 'some text') + self.assertEqual(repr(token), '') + parser = Parser([token], builtins=[filter_library]) + self.assertEqual( + repr(parser), + ']>', + ) + filter_expression = FilterExpression('news|upper', parser) + self.assertEqual(repr(filter_expression), "") + lexer = Lexer('{% for i in 1 %}{{ a }}\n{% endfor %}') + self.assertEqual( + repr(lexer), + '', + ) + def test_filter_parsing(self): c = {"article": {"section": "News"}} p = Parser("", builtins=[filter_library]) -- cgit v1.3