1
0
mirror of https://github.com/django/django.git synced 2025-01-29 03:29:38 +00:00

22 lines
348 B
Python
Raw Normal View History

from django.test import SimpleTestCase
from ..utils import render, setup
multiline_string = """
Hello,
boys.
How
are
you
gentlemen.
"""
class MultilineTests(SimpleTestCase):
@setup({'multiline01': multiline_string})
def test_multiline01(self):
output = render('multiline01')
self.assertEqual(output, multiline_string)