summaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Collapse)Author
2017-10-31Fixed #28750 -- Allowed models to define ↵Charlie Denton
Meta.manager_inheritance_from_future for backwards compatibility. Refs 631f4ab06112aca5bd6a57b81159048f936050bf.
2017-10-31Fixed #28760 -- Removed DummyCache's unnecessary get/set/delete_many().Adam Johnson
2017-10-31Fixed typo in tests/many_to_many/tests.py.Rajesh Veeranki
2017-10-30Fixed #28742 -- Fixed AttributeError crash when assigning None to cached ↵Paulo
reverse relations.
2017-10-30Refs #27318 -- Made DummyCache.set_many() return a list for consistency with ↵Adam Johnson
other backends.
2017-10-28Refs #28010 -- Allowed reverse related fields in SELECT FOR UPDATE .. OF.Ran Benita
Thanks Adam Chidlow for polishing the patch.
2017-10-25Fixed #28474 -- Made DurationField raise ValidationError for inputs that ↵Srinivas Reddy Thatiparthy
raised OverflowError.
2017-10-25Fixed #28689 -- Fixed unquoted table names in Subquery SQL when using OuterRef.Mariusz Felisiak
Regression in f48bc7c3dbd204eefb3c19016b1e4906ac26bee3.
2017-10-25Fixed #28740 -- Added 'continent_code' and 'continent_name' in GeoIP2.city() ↵Ryan Verner
dict.
2017-10-24Fixed #28739 -- Fixed get_fixed_timezone() for negative timedeltas.medmunds
2017-10-24Refs #28688 -- Updated a selenium test for admin's URLify.js change.Tim Graham
English words aren't removed if non-ASCII chars are present.
2017-10-23Fixed #28706 -- Moved AuthenticationFormn invalid login ValidationError to a ↵Jon Dufresne
method for reuse.
2017-10-21Fixed #28722 -- Made QuerySet.reverse() affect nulls_first/nulls_last.Tomer Chachamu
2017-10-21Refs #28721 -- Added test for variations of 'inf'/'infinity' as a template ↵Levi Payne
variable names. Fixed by 9ec7d8e514e09636b0ab4bcac74b5f7a5be335a3.
2017-10-21Fixed #28730 -- Fixed loss of precision for large integer literals in templatesClaude Paroz
Thanks Fraser Nevett for the report and Tim Graham for patch edits.
2017-10-21Removed unnecessary tuple()/list() calls.Mads Jensen
2017-10-20Fixed #28577 -- Added checks for ArrayField and JSONField to prevent mutable ↵Flávio Juvenal
defaults.
2017-10-20Fixed #27515 -- Made AuthenticationForm's username field use the max_length ↵Lucas Connors
from the model field. Thanks Ramin Farajpour Cami for the report.
2017-10-20Refs #19130 -- Added a test for AuthenticationForm.username max_length.Lucas Connors
This will be a more useful regression test after refs #27515.
2017-10-20Refs #24031 -- Added test for Case and When constructor arguments.Mads Jensen
2017-10-20Fixed #28662 -- Silenced join template filter error if arg isn't iterable.Mads Jensen
2017-10-18Refs #28575 -- Made RelatedObjectDoesNotExist classes pickable.Simon Charette
Thanks to Rachel Tobin for the initial __qualname__ work and tests.
2017-10-18Refs #28711 -- Replaced ugettext_lazy() with gettext_lazy() in a test.Tim Graham
As per c651331b34b7c3841c126959e6e52879bc6f0834.
2017-10-18Fixed #28711 -- Fixed unordered_list template filter with lazy translations.Jonas Haag
2017-10-18Refs #23260 -- Tested nested generator input to unordered_list template filter.Jonas Haag
2017-10-16Fixed #28497 -- Restored the ability to use sliced QuerySets with __exact.Tim Graham
Regression in ec50937bcbe160e658ef881021402e156beb0eaf. Thanks Simon Charette for review.
2017-10-14Fixed #28713 -- Prevented ModelBackend.get_all_permissions() from mutating ↵Yuri Kaszubowski Lopes
get_user_permissions().
2017-10-14Refs #28710 -- Simplified l10n format testClaude Paroz
2017-10-13Fixed #28695 -- Allowed models to use __init_subclass__().k
2017-10-13Fixed #28710 -- Fixed the Basque DATE_FORMAT stringClaude Paroz
Thanks Eneko Illarramendi for the report and initial patch.
2017-10-13Refs #28440 -- Fixed server connection closing test on macOS.Tom
2017-10-13Fixed #28708 -- Added constants to detect the Python version.Tim Graham
2017-10-13Refs #28575 -- Allowed pickling Model.DoesNotExist and ↵Rachel Tobin
MultipleObjectsReturned classes.
2017-10-12Fixed #27846 -- Made Model.refresh_from_db() clear cached relations.Paulo
2017-10-12Added test for FlatPage.__str__().Mads Jensen
2017-10-12Added setUp() method to FlatpageModelTests.Mads Jensen
2017-10-12Fixed #28679 -- Fixed urlencode()'s handling of bytes.François Freitag
Regression in fee42fd99ee470528858c2ccb3621135c30ec262. Thanks Claude Paroz, Jon Dufresne, and Tim Graham for the guidance.
2017-10-10Fixed #28601 -- Prevented cache.get_or_set() from caching None if default is ↵Daniel Tao
a callable that returns None.
2017-10-10Split django.utils.http tests into separate test classes.François Freitag
2017-10-09Fixed #28591 -- Added an error message for createsuperuser --username= (blank).Hasan Ramezani
2017-10-09Added tests for Combinable's bitwise logical operation errors.Mads Jensen
2017-10-06Fixed #28665 -- Change some database exceptions to NotImplementedError per ↵Simon Charette
PEP 249.
2017-10-05Fixed #28596 -- Fixed QuerySet.bulk_create() and cascade deletion crash on ↵Mariusz Felisiak
Oracle when using more than 65535 parameters. Thanks Tim Graham for the review.
2017-10-05Added tests for invalid {% for %} usage and ForLoop.__repr__().Mads Jensen
2017-10-03Refs #28584 -- Removed unused DatabaseFeatures.can_share_in_memory_db.Tim Graham
2017-10-03Fixed #28584 -- Dropped support for SQLite < 3.7.15.Tim Graham
2017-10-02Fixed #28642 -- Added caching to parse_accept_lang_header().Tom
2017-10-02Refs #27804 -- Used subTest() in parse_accept_lang_header() test.Tom
2017-10-02Added tests for invalid {% autoescape %} usage.Mads Jensen
2017-10-02Fixed incorrect integer division in DeletionTests.test_large_delete_related.Mariusz Felisiak