django/tests/template_tests/syntax_tests/test_setup.py

30 lines
775 B
Python
Raw Normal View History

from django.conf import settings
from django.test import SimpleTestCase
from .utils import setup
class SetupTests(SimpleTestCase):
def test_setup(self):
"""
Let's just make sure setup runs cases in the right order.
"""
cases = []
@setup({})
def method(self):
cases.append([
settings.TEMPLATE_STRING_IF_INVALID,
settings.TEMPLATE_DEBUG,
])
method(self)
self.assertEqual(cases[0], ['', False])
self.assertEqual(cases[1], ['', False])
self.assertEqual(cases[2], ['INVALID', False])
self.assertEqual(cases[3], ['INVALID', False])
self.assertEqual(cases[4], ['', True])
self.assertEqual(cases[5], ['', True])