1
0
mirror of https://github.com/django/django.git synced 2025-10-24 14:16:09 +00:00

Isolated template tests from Django settings.

This commit is contained in:
Aymeric Augustin
2014-12-07 09:43:10 +01:00
parent b34b8a12b7
commit 92a2d049a2
85 changed files with 1070 additions and 1081 deletions

View File

@@ -1,11 +1,11 @@
from django.test import SimpleTestCase
from ..utils import render, setup
from ..utils import setup
class LoremTagTests(SimpleTestCase):
@setup({'lorem1': '{% lorem 3 w %}'})
def test_lorem1(self):
output = render('lorem1')
output = self.engine.render_to_string('lorem1')
self.assertEqual(output, 'lorem ipsum dolor')