summaryrefslogtreecommitdiff
path: root/tests/model_fields/test_filefield.py
AgeCommit message (Collapse)Author
2017-05-31Refs #27777 -- Improved docs/added test for File context manager change.Ingo Klöcker
2016-10-28Fixed #27188 -- Allowed using unique=True with FileField.Michael Scott
Thanks Tim Graham for the initial patch.
2016-10-26Fixed #27334 -- Allowed FileField to move rather than copy a file.Adam Chidlow
When a FileField is set to an instance of File that is not also an instance of FieldFile, pre_save() passes that object as the contents to Storage.save(). This allows the file to be moved rather than copied to the upload destination.
2016-07-16Fixed #26900 -- Fixed crash accessing deferred FileFields.Tim Graham
2016-03-23Split model_fields tests into different files.Tim Graham