1
0
mirror of https://github.com/django/django.git synced 2024-11-18 07:26:04 +00:00
django/tests/template_tests/syntax_tests/test_lorem.py
2014-12-02 19:18:35 -05:00

12 lines
258 B
Python

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')