| OLD | NEW |
| 1 # -*- coding: utf-8 -*- | 1 # -*- coding: utf-8 -*- |
| 2 """ | 2 """ |
| 3 jinja2.tests | 3 jinja2.tests |
| 4 ~~~~~~~~~~~~ | 4 ~~~~~~~~~~~~ |
| 5 | 5 |
| 6 Jinja test functions. Used with the "is" operator. | 6 Jinja test functions. Used with the "is" operator. |
| 7 | 7 |
| 8 :copyright: (c) 2010 by the Jinja Team. | 8 :copyright: (c) 2010 by the Jinja Team. |
| 9 :license: BSD, see LICENSE for more details. | 9 :license: BSD, see LICENSE for more details. |
| 10 """ | 10 """ |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 'upper': test_upper, | 140 'upper': test_upper, |
| 141 'string': test_string, | 141 'string': test_string, |
| 142 'mapping': test_mapping, | 142 'mapping': test_mapping, |
| 143 'number': test_number, | 143 'number': test_number, |
| 144 'sequence': test_sequence, | 144 'sequence': test_sequence, |
| 145 'iterable': test_iterable, | 145 'iterable': test_iterable, |
| 146 'callable': test_callable, | 146 'callable': test_callable, |
| 147 'sameas': test_sameas, | 147 'sameas': test_sameas, |
| 148 'escaped': test_escaped | 148 'escaped': test_escaped |
| 149 } | 149 } |
| OLD | NEW |