From d7f59fe219560439fa138c671d6026c9124ea901 Mon Sep 17 00:00:00 2001 From: QuentinN42 Date: Fri, 11 Feb 2022 11:44:47 +0100 Subject: [PATCH] test: escape real text --- tests/test_format.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/test_format.py b/tests/test_format.py index 366103a..f1d6ac4 100644 --- a/tests/test_format.py +++ b/tests/test_format.py @@ -32,6 +32,8 @@ class TextToXMLTestCase(unittest.TestCase): ('>', '>'), ('"', '"'), ("'", '''), + ("too many blank lines (3 > 2)", 'too many blank lines (3 > 2)'), + ('line too long (100 > 80 characters)', 'line too long (100 > 80 characters)') ) @ddt.unpack def test_specials_chars(self, inp, out):