summaryrefslogtreecommitdiff
path: root/tests/custom_columns/tests.py
AgeCommit message (Collapse)Author
2020-11-06Fixed #31235 -- Made assertQuerysetEqual() compare querysets directly.Hasan Ramezani
This also replaces assertQuerysetEqual() to assertSequenceEqual()/assertCountEqual() where appropriate. Co-authored-by: Peter Inglesby <peter.inglesby@gmail.com> Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com>
2018-11-27Switched setUp() to setUpTestData() where possible in Django's tests.Simon Charette
2017-07-29Used assertRaisesMessage() to test Django's error messages.Mads Jensen
2017-01-18Refs #23919 -- Removed six.<various>_types usageClaude Paroz
Thanks Tim Graham and Simon Charette for the reviews.
2017-01-18Refs #23919 -- Removed encoding preambles and future importsClaude Paroz
2016-01-29Refs #26022 -- Used context manager version of assertRaisesMessage in tests.Hasan
2016-01-29Refs #26022 -- Used context manager version of assertRaises in tests.Hasan
2015-10-27Fixed #25550 -- Deprecated direct assignment to the reverse side of a ↵Tim Graham
related set.
2015-09-12Fixed #23395 -- Limited line lengths to 119 characters.Dražen Odobašić
2015-02-06Sorted imports with isort; refs #23860.Tim Graham
2014-11-03Fixed typos using https://github.com/vlajos/misspell_fixerVeres Lajos
2014-09-23Merged custom_columns_regress into the custom_columns test package.Loic Bistuer
2013-12-10Fixed E124 pep8 warnings.Loic Bistuer
2013-07-29Removed most of absolute_import importsClaude Paroz
Should be unneeded with Python 2.7 and up. Added some unicode_literals along the way.
2013-03-19Refs #18586 -- Split out long custom_columns lookup test into multiple tests.konarkmodi
2013-02-26Merged regressiontests and modeltests into the test root.Florian Apolloner