mirror of https://github.com/django/django.git
12 lines
258 B
Python
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')
|