summaryrefslogtreecommitdiff
path: root/tests/model_fields
AgeCommit message (Expand)Author
2018-10-01[2.1.x] Added tests for using bytearray with BinaryField and corrected docs.Jon Dufresne
2018-09-26[2.1.x] Added test of filtering on BinaryField and corrected docs.Jon Dufresne
2018-04-20Fixed #29247 -- Allowed blank model field choice to be defined in nested choi...orlnub123
2018-04-20Moved tests for model Field.get_choices().Tim Graham
2018-03-20Fixed #29227 -- Allowed BooleanField to be null=True.Tim Graham
2018-03-16Fixed hanging indentation in various code.Mariusz Felisiak
2017-12-28Fixed #28926 -- Fixed loss of precision of big DurationField values on SQLite...Sergey Fedoseev
2017-12-22Fixed #28937 -- Allowed BinaryField to be editable=True.Cameron Curry
2017-12-12Fixed #28915 -- Prevented SQLite from truncating trailing zeros in the fracti...Sergey Fedoseev
2017-11-30Fixed #28856 -- Fixed a regression in caching of a GenericForeignKey pointing...Simon Charette
2017-11-13Simplified choices iterators in tests.model_fields.models.Sergey Fedoseev
2017-09-29Fixed #27979 -- Made MySQL raise IntegrityError rather than OperationalError ...Tim Graham
2017-09-25Removed DatabaseFeatures.supports_microsecond_precision.Tim Graham
2017-08-31Fixed #28543 -- Prevented ManyToManyField.value_from_object() from being lazy.Tim Graham
2017-07-29Used assertRaisesMessage() to test Django's error messages.Mads Jensen
2017-07-20Removed unused models.DecimalField._format().Sergey Fedoseev
2017-06-26Removed unnecessary empty parentheses in class definitions.Jon Dufresne
2017-06-17Fixed #28319 -- Made TextField with choices use a Select widget.Maciej Jaworski
2017-06-14Fixed #27914 -- Added support for nested classes in Field.deconstruct()/__rep...chillaranand
2017-06-09Refs #27953 -- Removed hardcoded uses of Model.__str__() in tests.Collin Anderson
2017-06-01Fixed #28242 -- Moved ImageField file extension validation to the form field.Manatsawin Hanmongkolchai
2017-05-31Refs #27777 -- Improved docs/added test for File context manager change.Ingo Klöcker
2017-05-11Fixed #28188 -- Fixed crash when pickling model fields.Tim Graham
2017-05-10Decreased max_length for char fields unless absolutely needed. (#8485)Florian Apolloner
2017-05-09Fixed #28164 -- Improved float conversions in DecimalField.to_pythonClaude Paroz
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 o...Mariusz Felisiak
2017-03-23Fixed #27969 -- Fixed models.Field.formfield() setting 'disabled' for fields ...Kapil Garg
2017-03-04Refs #27795 -- Removed unneeded force_text callsClaude Paroz
2017-02-10Refs #27148 -- Fixed UUIDField.to_python(None) crash.ClairePhila
2017-01-29Removed unneeded parentheses in class definitionsClaude Paroz
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand
2017-01-20Refs #23919 -- Removed django.utils._os.upath()/npath()/abspathu() usage.Tim Graham
2017-01-19Fixed spelling mistakes in code and comments.james mike dupont
2017-01-18Refs #23919 -- Removed most of remaining six usageClaude Paroz
2017-01-18Refs #23919 -- Removed six.<various>_types usageClaude Paroz
2017-01-18Refs #23919 -- Removed six.PY2/PY3 usageClaude Paroz
2017-01-18Refs #23919 -- Removed encoding preambles and future importsClaude Paroz
2017-01-17Refs #26154 -- Removed deprecated CommaSeparatedIntegerField.Tim Graham
2016-12-20Added a test for NullBooleanField.formfield().Tim Graham
2016-12-14Fixed #27599 -- Fixed Field.__str__() crash for fields not attached to models.Morgan Aubert
2016-12-14Moved test_field_ordering to the model_fields package.Morgan Aubert
2016-11-14Fixed E305 flake8 warnings.Ramin Farajpour Cami
2016-11-10Refs #27392 -- Removed "Tests that", "Ensures that", etc. from test docstrings.za
2016-10-31Fixed #27148 -- Fixed ModelMultipleChoiceField crash with invalid UUID.Tim Graham
2016-10-28Fixed #27188 -- Allowed using unique=True with FileField.Michael Scott
2016-10-26Fixed #27334 -- Allowed FileField to move rather than copy a file.Adam Chidlow
2016-09-19Fixed #27219 -- Changed cx_Oracle client encoding to AL32UTF8 to allow 4-byte...Dmitry Medvinsky
2016-07-16Fixed #26900 -- Fixed crash accessing deferred FileFields.Tim Graham
2016-07-12Fixed #17657 -- Made ModelForm respect ModelMultipleChoiceField's to_field_name.Andrey Fedoseev