summaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Collapse)Author
2017-02-22Completed test coverage for django.utils.encoding.Tim Graham
2017-02-21Fixed #27856 -- Improved accuracy of date subtraction on PostgreSQL.Vytis Banaitis
Accuracy was incorrect when dates differ by a month or more.
2017-02-20Fixed #27850 -- Made RelatedFieldWidgetWrapper call render() of the wrapped ↵Collin Anderson
widget.
2017-02-17Fixed #27308 -- Fixed BytesWarnings in the test suite.Tim Graham
2017-02-17Fixed #27843 -- Fixed truncate_name() when the name contains a username.Mariusz Felisiak
2017-02-16Added tests for db.backends.utils.truncate_name().Mariusz Felisiak
2017-02-16Fixed #27828 -- Fixed a crash when subtracting Integer/DurationField from ↵Vytis Banaitis
DateField on Oracle/PostgreSQL.
2017-02-16Fixed #27829 -- Deprecated settings.DEFAULT_CONTENT_TYPE.Tim Graham
2017-02-15Fixed #27135 -- Made index introspection return Index.suffix.Tim Graham
2017-02-15Fixed #27840 -- Fixed KeyError in PasswordResetConfirmView.form_valid().Markus Holtermann
When a user is already logged in when submitting the password and password confirmation to reset a password, a KeyError occurred while removing the reset session token from the session. Refs #17209 Thanks Quentin Marlats for the report and Florian Apolloner and Tim Graham for the review.
2017-02-13Fixed #27820 -- Fixed RequestDataTooBig/TooManyFieldsSent crash.amalia
2017-02-13Refs #22669 -- Fixed bulk_create test if Pillow isn't installed.Vytis Banaitis
2017-02-11Fixed #27367 -- Doc'd and tested reversing of URLs with the same name.Robert Roskam
Thanks Reinout van Rees for contributing to the patch.
2017-02-11Refs #26610 -- Added CIText mixin and CIChar/Email/TextField.Mads Jensen
2017-02-11Fixed #27722 -- Reallowed using django.Template in {% include %}.Tim Graham
2017-02-11Fixed #27742 -- Reverted "Fixed #24607 -- Serialized natural keys in ↵Tim Graham
multi-table inheritance models." This reverts commit 74a575eb7296fb04e1fc2bd4e3f68dee3c66ee0a as it causes unexpected migrations and doesn't seem to be the best solution.
2017-02-11Fixed #25978 -- Deprecated shorcuts.render_to_response().Tim Graham
2017-02-10Refs #27148 -- Fixed UUIDField.to_python(None) crash.ClairePhila
Regression in 2f9861d823620da7ecb291a8f005f53da12b1e89.
2017-02-10Added multi_db=True to test cases that access the 'other' db connection.Tim Graham
Fixed a failure in the context processors tests when running in reverse on MySQL due to an extra query after refs #27683.
2017-02-09Fixed #20238 -- Added threading support to LiveServerTestCase.Nadège Michel
2017-02-09Fixed #22669 -- Fixed QuerySet.bulk_create() with empty model fields on Oracle.Mikhail Nacharov
2017-02-09Fixed #25898 -- Made test database/user creation on Oracle reraise ↵Mariusz Felisiak
unexpected errors. Thanks Shai Berger and Tim Graham for review.
2017-02-09Fixed #26551 -- Fixed negated Q() queries that span relations.François Freitag
Prevented queries from reusing trimmed joins.
2017-02-09Fixed #26005 -- Fixed some percent decoding cases in uri_to_iri().Chronial
2017-02-09Refs #23919 -- Removed default 'utf-8' argument for str.encode()/decode().Tim Graham
2017-02-08Used JsonResponse and response.json in file_uploads tests.Tim Graham
2017-02-07Fixed #27356 -- Fixed ModelAdmin.lookup_allowed() for some nested relations.Anton Samarchyan
2017-02-07Fixed #26903 -- Fixed __contains lookup for Date/DateTimeRangeField.Mariusz Felisiak
Thanks Mariusz Felisiak and Tim Graham for polishing the patch.
2017-02-07Fixed #5851 -- Allowed specifying different HTML attrs for ↵Mariusz Felisiak
SplitDateTimeWidget subwidgets. Thanks Tim Graham and Nick Pope for review.
2017-02-07Refs #27795 -- Removed force_text from the template layerClaude Paroz
Thanks Tim Graham for the review.
2017-02-07Fixed #27815 -- Made LoginView pass the request kwarg to AuthenticationForm.Zoltan Gyarmati
2017-02-07Converted usage of ugettext* functions to their gettext* aliasesClaude Paroz
Thanks Tim Graham for the review.
2017-02-06Fixed #27805 -- Fixed ClearableFileInput's "Clear" checkbox on model fields ↵Tim Graham
with a default.
2017-02-06Fixed #27783 -- Switched VariableDoesNotExist.__str__() to repr() context.Ryan O’Hara
Using __str__() and then repr'ing the result looks strange and can lead to recursive rendering of forms.
2017-02-04Fixed running TransactionsPerRequestTests in isolation.Jon Dufresne
Caused by `contrib/auth/backends.py` changes in cb7bbf97a74fa7800865e3615f196ad65dc4f281.
2017-02-04Fixed #27767 -- Added distinct argument to ArrayAgg.orf
2017-02-04Added tests for various __repr__() methods.Mads Jensen
2017-02-03Refs #23919 -- Removed a Python 2 code path in force_text().Tim Graham
Reverted the obsolete fix and tests for refs #12302.
2017-02-03Removed an untested and broken branch in force_bytes() (refs #6353).Tim Graham
The new test crashed in the removed branch. It's unclear if the branch has value since c6a2bd9b962af1cdf46f964589e6023046cfa8ec didn't include tests.
2017-02-03Added a test for force_text()'s DjangoUnicodeDecodeError path.Tim Graham
2017-02-03Fixed #27741 -- Isolated TestCollectionHashedFilesCache in a tmpdir.David Sanders
2017-02-03Refs #27745 -- Improved test coverage of contrib.contenttypes.Anton Samarchyan
2017-02-03Split up contenttypes_tests.Tim Graham
2017-02-03Fixed spelling of "nonexistent".Tim Graham
2017-02-02Fixed #27803 -- Kept safe status of lazy safe strings in conditional_escapeClaude Paroz
2017-02-02Refs #27804 -- Used subTest() in tests.utils_tests.test_html.Tim Graham
2017-02-02Imported specific functions in tests.utils_tests.test_html.Tim Graham
2017-02-01Fixed #27683 -- Made MySQL default to the read committed isolation level.Tim Graham
Thanks Shai Berger for test help and Adam Johnson for review.
2017-02-01Refs #27683 -- Split up MySQL isolation level tests.Tim Graham
2017-02-01Refs #23919 -- Replaced kwargs.pop() with keyword-only arguments.Vytis Banaitis