django/tests/template_tests/syntax_tests/test_lorem.py

12 lines
258 B
Python
Raw Normal View History

from django.test import TestCase
from .utils import render, setup
class LoremTagTests(TestCase):
@setup({'lorem1': '{% lorem 3 w %}'})
def test_lorem1(self):
output = render('lorem1')
self.assertEqual(output, 'lorem ipsum dolor')