summaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Collapse)Author
2016-08-31Fixed #24112 -- Fixed assertInHTML()'s counting if needle has no root element.Adam Zapletal
2016-08-31Fixed #25181 -- Added localdate() function to get date in a different time zone.Jon Dufresne
Thanks Konrad Świat for the original patch.
2016-08-31Fixed #27152 -- Supported comma delimiter in memcached LOCATION string.Ed Morley
2016-08-31Added a test for multiple memcached servers in LOCATION.Ed Morley
2016-08-31Fixed #27140 -- Prevented template rendering from hiding a property's TypeError.Tim Graham
2016-08-31Fixed #20892 -- Allowed configuring memcached client using OPTIONS.Ed Morley
Previously, the MemcachedCache backend ignored `OPTIONS` and PyLibMCCache used them to set pylibmc behaviors. Both backends now pass `OPTIONS` as keyword arguments to the client constructors.
2016-08-31Removed unused variable in test_memcached_uses_highest_pickle_versionEd Morley
2016-08-31Fixed #27154 -- Allowed comparing CallableBool with bitwise or.Olexander Yermakov
Thanks Tim for the review.
2016-08-31Fixed #27131 -- Passed proper string type to SMTP connection loginClaude Paroz
Passing an Unicode string on Python 2 was crashing the connection. Thanks slavugan@gmail.com for the report, and Tim Graham for the review.
2016-08-30Fixed #27153 -- Added validation for HttpResponse status.Ryan Allen
2016-08-30Fixed #27113 -- Tested that setting HttpRequest.encoding clears POST.PremAnand Lakshmanan
2016-08-30Fixed #26685 -- Added dwithin lookup support on SpatiaLite.Kevan Swanberg
2016-08-30Fixed #25109 -- Stopped silencing explicitly specified migration modules ↵Simon Charette
import errors. Thanks Tim for the review.
2016-08-30Refs #27097, #27098 -- Moved PostgreSQL index type introspection to ↵Akshesh
get_constraints().
2016-08-29Fixed #19914 -- Fixed test failures with pylibmc.Ed Morley
2016-08-29Fixed #27132 -- Allowed testing MemcachedCache and PyLibMCCache during the ↵Ed Morley
same test run.
2016-08-29Refs #19914 -- Split the test_invalid_keys cache test into two.Ed Morley
The first half of the test fails when using pylibmc (so will need to be skipped).
2016-08-28Fixed typo in auth management test.Jon Dufresne
2016-08-28Refs #27132 -- Added pylibmc to test requirements.Ed Morley
2016-08-26Fixed #27126 -- Made {% regroup %} return a namedtuple to ease unpacking.Baptiste Mispelon
2016-08-26Fixed #27124 -- Excluded cull-related cache configs from memcached tests.Ed Morley
Since the `cull` and `zero_cull` test cache configs set `MAX_ENTRIES` and `CULL_FREQUENCY` in `OPTIONS`, which are only intended for use with the locmem, filesystem, and database backends. This prevents test failures once refs #20892 is fixed.
2016-08-26Fixed #26942 -- Added support for subtests during parallel testing.Chris Jerdonek
2016-08-25Fixed #27067 -- Deprecated string_concat() in favor of format_lazy().Mattias Loverot
2016-08-25Fixed #25995 -- Added an encoder option to JSONFieldClaude Paroz
Thanks Berker Peksag and Tim Graham for the reviews.
2016-08-24Fixed #27039 -- Fixed empty data fallback to model field default in model forms.Tim Graham
2016-08-24Fixed #26816 -- Corrected an admin check to require inlines to subclass ↵Berker Peksag
InlineModelAdmin.
2016-08-24Fixed #27111 -- Fixed KeyError if USERNAME_FIELD isn't in ↵Berker Peksag
UserCreationForm.fields.
2016-08-24Fixed #26866 -- Added format_lazy functionMattias Loverot
Added format_lazy function to django.utils.text module. Useful when dealing with relative complex lazy string concatenations (e.g. in urls.py when translating urls in regular expressions).
2016-08-24Fixed #27100 -- Included already applied migration changes in the ↵Simon Charette
pre-migrate state. Refs #24100. Thanks Tim for the review.
2016-08-24Fixed #27044 -- Included already applied migration changes in the ↵Simon Charette
post-migrate state when the execution plan is empty. Refs #24100. Thanks tkhyn for the report and Tim for the review.
2016-08-23Fixed #27089 -- Added database alias to InconsistentMigrationHistory message.Tim Graham
2016-08-23Fixed #27103 -- Registered vcapi/rcapi GDAL prototypes based on their own ↵Matthew Somerville
drivers.
2016-08-23Fixed #26971 -- Prevented crash with non-UTF-8 incoming PATH_INFOClaude Paroz
Thanks Tim Graham and Loïc Bistuer for the reviews.
2016-08-23Fixed #26998 -- Reverted some admin checks from checking field.many_to_many ↵Collin Anderson
back to isinstance(field, models.ManyToManyField). This partially reverts 983c158da7723eb00a376bd31db76709da4d0260
2016-08-23Fixed #27061 -- Added a TEST['TEMPLATE'] setting for PostgreSQL.Chris Jerdonek
2016-08-20Fixed #27018 -- Fixed admindocs crash with a view in a class.Helen Sherwood-Taylor
Generated correct admindocs URLs on Python 3. URLs generate 404s on Python 2, as in older versions of Django.
2016-08-20Fixed #27096 -- Fixed primary key introspection for sqlite3 backendClaude Paroz
2016-08-19Refs #26902 -- Protected against insecure redirects in set_language().Przemysław Suliga
2016-08-19Refs #26902 -- Protected against insecure redirects in Login/LogoutView.Przemysław Suliga
2016-08-19Fixed #26902 -- Allowed is_safe_url() to require an https URL.Przemysław Suliga
Thanks Andrew Nester, Berker Peksag, and Tim Graham for reviews.
2016-08-19Fixed #22288 -- Fixed F() expressions with the __range lookup.Matthew Wilkes
2016-08-19Fixed #22414 -- Ensured that LiveServerTestCase closes connections.Chris Jerdonek
2016-08-18Fixed #27068 -- Unified form field initial data retrieval.Jon Dufresne
2016-08-18Removed unused 'password' parameter in auth_tests.Tim Graham
2016-08-18Fixed #25871 -- Added expressions support to QuerySet.values().Ian Foote
2016-08-19Fixed #27073 -- Removed duplicated managers in `Model._meta.managers`.Loïc Bistuer
2016-08-18Fixed #27054 -- Fixed makemigrations crash with a read-only database.Jim Nicholls
2016-08-17Refs #26983 -- Added test for isnull lookup to CharField with primary_key=True.Chris Lamb
2016-08-17Fixed #26840 -- Added test.utils.setup/teardown_databases().Andreas Pelme
2016-08-16Fixed crash comparing CheckMessage objects to non-CheckMessage objects.Adam Chainz