2014-12-03 20:36:17 +00:00
|
|
|
from django.test import SimpleTestCase
|
2014-11-12 01:32:44 +00:00
|
|
|
|
2014-12-07 08:43:10 +00:00
|
|
|
from ..utils import setup
|
2014-11-12 01:32:44 +00:00
|
|
|
|
|
|
|
|
2014-12-03 20:36:17 +00:00
|
|
|
class LoremTagTests(SimpleTestCase):
|
2014-11-12 01:32:44 +00:00
|
|
|
|
|
|
|
@setup({'lorem1': '{% lorem 3 w %}'})
|
|
|
|
def test_lorem1(self):
|
2014-12-07 08:43:10 +00:00
|
|
|
output = self.engine.render_to_string('lorem1')
|
2014-11-12 01:32:44 +00:00
|
|
|
self.assertEqual(output, 'lorem ipsum dolor')
|