summaryrefslogtreecommitdiff
path: root/tests/model_fields/test_decimalfield.py
AgeCommit message (Collapse)Author
2017-07-29Used assertRaisesMessage() to test Django's error messages.Mads Jensen
2017-07-20Removed unused models.DecimalField._format().Sergey Fedoseev
Unused since b3b71a0922334c70bbc646a4873010f808196671.
2017-05-09Fixed #28164 -- Improved float conversions in DecimalField.to_pythonClaude Paroz
Thanks Tim Graham and Adam Johnson for the reviews.
2017-04-29Removed blank line in tests/model_fields/test_decimalfield.py per isort.Tim Graham
2017-04-28Refs #6767 -- Added test for fetching decimal values without rounding error ↵Mariusz Felisiak
on Oracle.
2016-06-16Fixed #26747 -- Used more specific assertions in the Django test suite.Jon Dufresne
2016-05-04Fixed #22936 -- Obsoleted Field.get_prep_lookup()/get_db_prep_lookup()Claude Paroz
Thanks Tim Graham for completing the initial patch.
2016-03-23Split model_fields tests into different files.Tim Graham