summaryrefslogtreecommitdiff
path: root/tests/file_storage/tests.py
Commit message (Expand)AuthorAgeFilesLines
* Capitalized "Python" in docs and comments.Jon Dufresne2018-10-091-1/+1
* Refs #28909 -- Simplifed code using unpacking generalizations.Sergey Fedoseev2018-09-281-2/+1
* Fixed ResourceWarning from unclosed test files.Jon Dufresne2018-07-101-2/+4
* Fixed #28144 -- Added FileSystemStorage.OS_OPEN_FLAGS to allow customization.Jon Prindiville2018-06-291-0/+39
* Removed urllib2 reference in file storage testsClaude Paroz2018-04-271-2/+3
* Refs #23968 -- Removed unnecessary lists, generators, and tuple calls.Jon Dufresne2017-06-011-1/+1
* Fixed #28224 -- Tested for SuspiciousOperation subclasses in Django's tests.Rajesh Veeranki2017-05-251-3/+3
* Refs #27836 -- Fixed cleanup exception in file_storage test.Vytis Banaitis2017-03-011-3/+3
* Fixed #27836 -- Allowed FileSystemStorage.delete() to remove directories.chillaranand2017-02-241-0/+5
* Fixed spelling of "nonexistent".Tim Graham2017-02-031-6/+6
* Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand2017-01-251-2/+2
* Refs #23919 -- Replaced errno checking with PEP 3151 exceptions.Tim Graham2017-01-251-9/+8
* Refs #23919 -- Removed django.utils._os.upath()/npath()/abspathu() usage.Tim Graham2017-01-201-2/+1
* Refs #23919 -- Simplified assertRaisesRegex()'s that accounted for Python 2.Tim Graham2017-01-201-3/+2
* Refs #23919 -- Removed most of remaining six usageClaude Paroz2017-01-181-5/+6
* Refs #23919 -- Removed encoding preambles and future importsClaude Paroz2017-01-181-3/+0
* Refs #23832 -- Removed deprecated non-timezone aware Storage API.Tim Graham2017-01-171-68/+1
* Fixed #27579 -- Added aliases for Python 3's assertion names in SimpleTestCase.Tim Graham2016-12-071-11/+11
* Refs #27392 -- Removed "Tests that", "Ensures that", etc. from test docstrings.za2016-11-101-6/+7
* Fixed #27327 -- Simplified time zone handling by requiring pytz.Tim Graham2016-10-271-18/+0
* Fixed #13809 -- Made FieldFile.open() respect its mode argument.Chris Sinchok2016-08-091-0/+10
* Fixed #26896 -- Allowed a lazy base_url for FileSystemStorage.Tomas Pazderka2016-07-291-1/+10
* Refs #26772 -- Added a test for FileField reopening closed files.Paul J Stevens2016-06-181-0/+8
* Reverted "Fixed #26644 -- Allowed wrapping NamedTemporaryFile with File."Tim Graham2016-06-181-8/+0
* Reverted "Fixed #26398 -- Made FieldFile.open() respect its mode argument."Tim Graham2016-06-171-10/+0
* Fixed #26644 -- Allowed wrapping NamedTemporaryFile with File.Hugo Osvaldo Barrera2016-06-141-0/+8
* Refs #26712 -- Removed workarounds for PostgreSQL queries on TIME_ZONE changes.Simon Charette2016-06-061-3/+1
* Fixed #26058 -- Delegated os.path bits of FileField's filename generation to ...Cristiano2016-04-301-1/+1
* Fixed #26495 -- Added name arg to Storage.save()'s File wrapping.Maxim Novikov2016-04-211-0/+23
* Fixed E128 flake8 warnings in tests/.Tim Graham2016-04-081-29/+18
* Fixed #25905 -- Prevented leading slashes in urljoin() callsrixx2016-04-031-0/+13
* Fixed #26398 -- Made FieldFile.open() respect its mode argument.Alexey Kotlyarov2016-03-231-0/+10
* Fixed #23832 -- Added timezone aware Storage API.James Aylett2016-02-231-18/+187
* Refs #26022 -- Used context manager version of assertRaisesMessage in tests.Hasan2016-01-291-4/+2
* Refs #26022 -- Used context manager version of assertRaises in tests.Hasan2016-01-291-9/+14
* Fixed #26038 -- Changed FileSystemStorage defaults on setting change.Simon Charette2016-01-071-1/+39
* Fixed #21042 -- Allowed accessing FileDescriptor on the model class.Tim Graham2015-10-011-3/+2
* Refs #9893 -- Removed shims for lack of max_length support in file storage pe...Tim Graham2015-09-231-26/+0
* Renamed RemovedInDjangoXYWarnings for new roadmap.Tim Graham2015-06-241-2/+2
* Fixed #24826 -- Accounted for filesystem-dependent filename max lengthClaude Paroz2015-05-221-1/+13
* Fixed typo in file_storage tests.Tim Graham2015-05-201-1/+1
* Refs #24652 -- Enforced test isolation in file_storage tests.Simon Charette2015-05-201-2/+4
* Fixed #24105 -- Called Storage.get_valid_name() when upload_to is callableAbhaya Agarwal2015-05-121-0/+10
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-8/+7
* Removed threading fallback imports.Tim Graham2015-01-281-5/+1
* Skipped a problematic file_storage test on Windows.Tim Graham2015-01-141-0/+4
* Fixed #9893 -- Allowed using a field's max_length in the Storage.Pavel Shpilev2015-01-121-3/+67
* Fixed #23620 -- Used more specific assertions in the Django test suite.Berker Peksag2014-11-031-4/+4
* Replaced set([foo, ...]) by {foo, ...} literals. Refs PR 3282.Thomas Chaumeny2014-09-291-2/+2
* Fixed #23157 -- Removed O(n) algorithm when uploading duplicate file names.Tim Graham2014-08-201-19/+27