summaryrefslogtreecommitdiff
path: root/tests/cache
Commit message (Expand)AuthorAgeFilesLines
* Refs #28478 -- Deprecated TestCase's allow_database_queries and multi_db in f...Simon Charette2019-01-101-1/+1
* Made reused RequestFactory instances class attributes.Simon Charette2018-11-271-21/+11
* Switched TestCase to SimpleTestCase where possible in Django's tests.Tim Graham2018-11-271-1/+1
* Fixed #29626, #29584 -- Added optimized versions of get_many() and delete_man...oliver2018-08-171-0/+14
* Optimized some cache tests with set_many().oliver2018-08-161-17/+6
* Fixed #20584 -- Fixed memcached's get_many() with single-use iterators.Christian Barcenas2018-07-091-0/+1
* Fixed #29363 -- Added SimpleTestCase.assertWarnsMessage().Morgan Aubert2018-05-091-6/+1
* Fixed #27480 -- Added cache.touch().Nicolas NoƩ2018-04-271-0/+30
* Refs #17476 -- Removed obsolete simplification of timezone names in cache key...Sergey Fedoseev2018-03-031-29/+0
* Fixed #28833 -- Prevented CacheMiddleware from caching responses with "Cache-...shanghui2018-02-061-1/+10
* Fixed #28977 -- Changed local-memory cache to use LRU culling.Grant Jenks2018-01-241-2/+48
* Fixed #28760 -- Removed DummyCache's unnecessary get/set/delete_many().Adam Johnson2017-10-311-5/+19
* Refs #27318 -- Made DummyCache.set_many() return a list for consistency with ...Adam Johnson2017-10-301-2/+2
* Fixed #28601 -- Prevented cache.get_or_set() from caching None if default is ...Daniel Tao2017-10-101-0/+5
* Refs #26447 -- Removed the USE_ETAGS setting per deprecation timeline.Tim Graham2017-09-221-36/+2
* Refs #20892 -- Removed support for passing pylibmc behavior settings as top-l...Tim Graham2017-09-221-18/+0
* Fixed #27318 -- Made cache.set_many() return the list of failed keys.Olivier Tabone2017-09-061-0/+14
* Fixed #28500 -- Fixed crash in FileBasedCache._is_expired() if the cache file...caleb logan2017-09-031-0/+7
* Refs #27787 -- Corrected or removed invalid call_command() options.Chandrakant Kumar2017-06-161-7/+3
* Fixed #28249 -- Removed unnecessary dict.keys() calls.Jon Dufresne2017-05-271-1/+1
* Refs #27804 -- Used subTest() in several tests.Bruno Alla2017-05-241-29/+38
* Replaced type-specific assertions with assertEqual().Tim Graham2017-03-171-26/+26
* Refs #23919 -- Removed default 'utf-8' argument for str.encode()/decode().Tim Graham2017-02-091-2/+2
* Fixed spelling of "nonexistent".Tim Graham2017-02-031-3/+2
* Refs #23919 -- Removed misc Python 2/3 references.Tim Graham2017-01-251-4/+0
* Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand2017-01-251-7/+7
* Refs #23919 -- Replaced errno checking with PEP 3151 exceptions.Tim Graham2017-01-251-1/+1
* Removed unneeded force_text calls in the test suiteClaude Paroz2017-01-241-3/+2
* Refs #23919 -- Removed misc references to Python 2.Tim Graham2017-01-211-9/+0
* Refs #23919 -- Removed django.test.mock Python 2 compatibility shim.Tim Graham2017-01-201-1/+2
* Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette2017-01-193-7/+7
* Refs #23919 -- Replaced io.open() with open().Aymeric Augustin2017-01-181-1/+1
* Refs #23919 -- Removed most of remaining six usageClaude Paroz2017-01-181-9/+5
* Refs #23919 -- Removed six.PY2/PY3 usageClaude Paroz2017-01-181-5/+1
* Refs #23919 -- Removed encoding preambles and future importsClaude Paroz2017-01-181-4/+0
* Refs #27392 -- Removed "Tests that", "Ensures that", etc. from test docstrings.za2016-11-101-24/+22
* Fixed #27327 -- Simplified time zone handling by requiring pytz.Tim Graham2016-10-271-8/+7
* Fixed #26447 -- Deprecated settings.USE_ETAGS in favor of ConditionalGetMiddl...Denis Cornehl2016-10-101-2/+4
* Refs #5133 -- Isolated test_close() cache test.Tim Graham2016-09-151-4/+8
* Fixed #27211 -- Made UpdateCacheMiddleware include caching headers for "304 N...Rinat Khabibiev2016-09-141-1/+16
* Normalized spelling of ETag.Tim Graham2016-09-091-1/+1
* Fixed #11331 -- Stopped closing pylibmc connections after each request.Ed Morley2016-09-021-1/+7
* Refs #5133 -- Tested memcached connection closing after each request.Ed Morley2016-09-021-0/+7
* Fixed #27152 -- Supported comma delimiter in memcached LOCATION string.Ed Morley2016-08-311-0/+1
* Added a test for multiple memcached servers in LOCATION.Ed Morley2016-08-311-0/+10
* Fixed #20892 -- Allowed configuring memcached client using OPTIONS.Ed Morley2016-08-311-0/+39
* Removed unused variable in test_memcached_uses_highest_pickle_versionEd Morley2016-08-311-1/+1
* Fixed #19914 -- Fixed test failures with pylibmc.Ed Morley2016-08-291-1/+18
* Fixed #27132 -- Allowed testing MemcachedCache and PyLibMCCache during the sa...Ed Morley2016-08-291-34/+42
* Refs #19914 -- Split the test_invalid_keys cache test into two.Ed Morley2016-08-291-25/+24