summaryrefslogtreecommitdiff
path: root/tests/template_tests/syntax_tests/test_lorem.py
blob: 8692201dce0407a6a2365c69873bce8384ccf109 (plain)
1
2
3
4
5
6
7
8
9
10
11
from django.test import SimpleTestCase

from .utils import render, setup


class LoremTagTests(SimpleTestCase):

    @setup({'lorem1': '{% lorem 3 w %}'})
    def test_lorem1(self):
        output = render('lorem1')
        self.assertEqual(output, 'lorem ipsum dolor')