summaryrefslogtreecommitdiff
path: root/tests/model_fields
Commit message (Expand)AuthorAgeFilesLines
* Switched setUp() to setUpTestData() where possible in Django's tests.Simon Charette2018-11-271-2/+3
* Switched TestCase to SimpleTestCase where possible in Django's tests.Tim Graham2018-11-271-1/+1
* Fixed #29835 -- Made RelatedFieldListFilter respect ModelAdmin.ordering.Hasan Ramezani2018-11-141-1/+35
* Fixed #29869 -- Made UUIDField.to_python() convert integers.Sanyam Khurana2018-10-241-0/+16
* Fixed #27595 -- Made ForeignKey.get_col() follow target chains.Simon Charette2018-10-222-1/+30
* Added tests for using bytearray with BinaryField and corrected docs.Jon Dufresne2018-10-011-1/+6
* Refs #28909 -- Simplifed code using unpacking generalizations.Sergey Fedoseev2018-09-281-13/+13
* Added test of filtering on BinaryField and corrected docs.Jon Dufresne2018-09-261-0/+10
* Fixed #29247 -- Allowed blank model field choice to be defined in nested choi...orlnub1232018-04-201-0/+13
* Moved tests for model Field.get_choices().Tim Graham2018-04-202-12/+14
* Fixed #29227 -- Allowed BooleanField to be null=True.Tim Graham2018-03-202-6/+20
* Fixed hanging indentation in various code.Mariusz Felisiak2018-03-161-4/+2
* Fixed #28926 -- Fixed loss of precision of big DurationField values on SQLite...Sergey Fedoseev2017-12-281-1/+1
* Fixed #28937 -- Allowed BinaryField to be editable=True.Cameron Curry2017-12-221-0/+9
* Fixed #28915 -- Prevented SQLite from truncating trailing zeros in the fracti...Sergey Fedoseev2017-12-121-0/+6
* Fixed #28856 -- Fixed a regression in caching of a GenericForeignKey pointing...Simon Charette2017-11-301-0/+10
* Simplified choices iterators in tests.model_fields.models.Sergey Fedoseev2017-11-131-17/+2
* Fixed #27979 -- Made MySQL raise IntegrityError rather than OperationalError ...Tim Graham2017-09-291-1/+10
* Removed DatabaseFeatures.supports_microsecond_precision.Tim Graham2017-09-251-1/+0
* Fixed #28543 -- Prevented ManyToManyField.value_from_object() from being lazy.Tim Graham2017-08-312-11/+20
* Used assertRaisesMessage() to test Django's error messages.Mads Jensen2017-07-292-4/+4
* Removed unused models.DecimalField._format().Sergey Fedoseev2017-07-201-6/+0
* Removed unnecessary empty parentheses in class definitions.Jon Dufresne2017-06-261-1/+1
* Fixed #28319 -- Made TextField with choices use a Select widget.Maciej Jaworski2017-06-171-0/+6
* Fixed #27914 -- Added support for nested classes in Field.deconstruct()/__rep...chillaranand2017-06-141-0/+14
* Refs #27953 -- Removed hardcoded uses of Model.__str__() in tests.Collin Anderson2017-06-091-2/+2
* Fixed #28242 -- Moved ImageField file extension validation to the form field.Manatsawin Hanmongkolchai2017-06-011-7/+1
* Refs #27777 -- Improved docs/added test for File context manager change.Ingo Klöcker2017-05-311-0/+11
* Fixed #28188 -- Fixed crash when pickling model fields.Tim Graham2017-05-111-0/+9
* Decreased max_length for char fields unless absolutely needed. (#8485)Florian Apolloner2017-05-101-1/+1
* Fixed #28164 -- Improved float conversions in DecimalField.to_pythonClaude Paroz2017-05-091-0/+6
* Removed blank line in tests/model_fields/test_decimalfield.py per isort.Tim Graham2017-04-291-1/+0
* Refs #6767 -- Added test for fetching decimal values without rounding error o...Mariusz Felisiak2017-04-281-1/+9
* Fixed #27969 -- Fixed models.Field.formfield() setting 'disabled' for fields ...Kapil Garg2017-03-231-0/+6
* Refs #27795 -- Removed unneeded force_text callsClaude Paroz2017-03-041-1/+1
* Refs #27148 -- Fixed UUIDField.to_python(None) crash.ClairePhila2017-02-101-1/+12
* Removed unneeded parentheses in class definitionsClaude Paroz2017-01-291-1/+1
* Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand2017-01-252-3/+3
* Refs #23919 -- Removed django.utils._os.upath()/npath()/abspathu() usage.Tim Graham2017-01-201-3/+2
* Fixed spelling mistakes in code and comments.james mike dupont2017-01-192-7/+7
* Refs #23919 -- Removed most of remaining six usageClaude Paroz2017-01-182-4/+2
* Refs #23919 -- Removed six.<various>_types usageClaude Paroz2017-01-183-34/+31
* Refs #23919 -- Removed six.PY2/PY3 usageClaude Paroz2017-01-181-11/+5
* Refs #23919 -- Removed encoding preambles and future importsClaude Paroz2017-01-185-13/+0
* Refs #26154 -- Removed deprecated CommaSeparatedIntegerField.Tim Graham2017-01-173-33/+24
* Added a test for NullBooleanField.formfield().Tim Graham2016-12-201-0/+5
* Fixed #27599 -- Fixed Field.__str__() crash for fields not attached to models.Morgan Aubert2016-12-141-2/+3
* Moved test_field_ordering to the model_fields package.Morgan Aubert2016-12-141-0/+10
* Fixed E305 flake8 warnings.Ramin Farajpour Cami2016-11-141-0/+1
* Refs #27392 -- Removed "Tests that", "Ensures that", etc. from test docstrings.za2016-11-104-9/+9