diff options
| author | Preston Timmons <prestontimmons@gmail.com> | 2014-11-11 19:32:44 -0600 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-12-02 19:18:35 -0500 |
| commit | b872134bfc14f6322bd1e4b0a08bf5bfd2c43a52 (patch) | |
| tree | f82fc6be418adeb1e7ff36728f82008770066999 /tests/template_tests/syntax_tests/test_setup.py | |
| parent | 4a4ad27712b44cebada1bdaebd082cf82df74610 (diff) | |
Fixed #23768 -- Rewrote template tests as unit tests.
Diffstat (limited to 'tests/template_tests/syntax_tests/test_setup.py')
| -rw-r--r-- | tests/template_tests/syntax_tests/test_setup.py | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/tests/template_tests/syntax_tests/test_setup.py b/tests/template_tests/syntax_tests/test_setup.py new file mode 100644 index 0000000000..ca91093078 --- /dev/null +++ b/tests/template_tests/syntax_tests/test_setup.py @@ -0,0 +1,29 @@ +from django.conf import settings +from django.test import TestCase + +from .utils import setup + + +class SetupTests(TestCase): + + 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]) |
