summaryrefslogtreecommitdiff
path: root/tests/template_tests/syntax_tests/test_if_equal.py
AgeCommit message (Collapse)Author
2021-01-14Refs #25236 -- Removed {% ifequal %} and {% ifnotequal %} template tags per ↵Mariusz Felisiak
deprecation timeline.
2020-05-11Fixed #25236 -- Deprecated {% ifequal %} and {% ifnotequal %} template tags.Jon Dufresne
The {% if %} tag provides all features of these tags. Since Django 1.2 (May 17, 2010), the docs have hinted that {% ifequal %} and {% ifnotequal %} will be deprecated in a future Django version. Time to make it official.
2018-03-24Increased test coverage for various template tags.Mads Jensen
2017-02-04Added tests for various __repr__() methods.Mads Jensen
2016-09-17Refs #27025 -- Fixed "invalid escape sequence" warnings in Python 3.6.Tim Graham
http://bugs.python.org/issue27364
2014-12-28Isolated template tests from Django settings.Aymeric Augustin
2014-12-06Fixed #23958 -- Rewrote filter tests as unit tests.Preston Timmons
2014-12-03Converted recently refactored templates tests to SimpleTestCase.Ramiro Morales
These test methods don't need DB setup/teardown. Refs #23768 and b872134b.
2014-12-02Fixed #23768 -- Rewrote template tests as unit tests.Preston Timmons