diff options
| author | Mads Jensen <mje@inducks.org> | 2018-03-24 21:38:20 +0100 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2018-03-24 19:56:46 -0400 |
| commit | 4554f9a783665d64b59c35b53ae71178e56ac783 (patch) | |
| tree | 4281fbf14ba20f51fcc846441ccf86f72fe56e5f /tests/template_tests/syntax_tests/test_lorem.py | |
| parent | 623117d1f1d7866b7321f0e73a6c497bb3b3cb01 (diff) | |
Increased test coverage for various template tags.
Diffstat (limited to 'tests/template_tests/syntax_tests/test_lorem.py')
| -rw-r--r-- | tests/template_tests/syntax_tests/test_lorem.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/template_tests/syntax_tests/test_lorem.py b/tests/template_tests/syntax_tests/test_lorem.py index 9963bbd026..631bc3d067 100644 --- a/tests/template_tests/syntax_tests/test_lorem.py +++ b/tests/template_tests/syntax_tests/test_lorem.py @@ -1,4 +1,5 @@ from django.test import SimpleTestCase +from django.utils.lorem_ipsum import WORDS from ..utils import setup @@ -9,3 +10,11 @@ class LoremTagTests(SimpleTestCase): def test_lorem1(self): output = self.engine.render_to_string('lorem1') self.assertEqual(output, 'lorem ipsum dolor') + + @setup({'lorem_random': '{% lorem 3 w random %}'}) + def test_lorem_random(self): + output = self.engine.render_to_string('lorem_random') + words = output.split(' ') + self.assertEqual(len(words), 3) + for word in words: + self.assertIn(word, WORDS) |
