summaryrefslogtreecommitdiff
path: root/tests/template_tests/syntax_tests/test_multiline.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/template_tests/syntax_tests/test_multiline.py')
-rw-r--r--tests/template_tests/syntax_tests/test_multiline.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/template_tests/syntax_tests/test_multiline.py b/tests/template_tests/syntax_tests/test_multiline.py
new file mode 100644
index 0000000000..af4c623dd1
--- /dev/null
+++ b/tests/template_tests/syntax_tests/test_multiline.py
@@ -0,0 +1,21 @@
+from django.test import TestCase
+
+from .utils import render, setup
+
+
+multiline_string = """
+Hello,
+boys.
+How
+are
+you
+gentlemen.
+"""
+
+
+class MultilineTests(TestCase):
+
+ @setup({'multiline01': multiline_string})
+ def test_multiline01(self):
+ output = render('multiline01')
+ self.assertEqual(output, multiline_string)