summaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Collapse)Author
2013-05-19Fixed test failure introduced in 1927bf7c91.Aymeric Augustin
2013-05-19Fixes #18896. Add tests verifying that you can get IntegrityErrors using ↵Pablo Recio
get_or_create through relations like M2M, and it also adds a note into the documentation warning about it
2013-05-19Merge pull request #1161 from erikr/urlize-additional-testAymeric Augustin
Fixed #19070 -- Additional test for urlize and brackets
2013-05-19Merge pull request #1160 from erikr/host-inet-postgres2Aymeric Augustin
Fixed #11442 -- Postgresql backend casts all inet types to text
2013-05-19Fix #19070 -- Additional test for urlize and bracketsErik Romijn
2013-05-19Fixed #11442 -- Postgresql backend casts all inet types to textErik Romijn
2013-05-19Fixed #20126 -- XViewMiddleware moved to django.contrib.admindocs.middlewareŁukasz Langa
2013-05-19Fixed #12747 -- Made reason phrases customizable.Aymeric Augustin
2013-05-19Merge pull request #1152 from ambv/issue11915Aymeric Augustin
Fixed #11915: generic Accept-Language matches country-specific variants
2013-05-19Merge pull request #1094 from senko/ticket_11160Andrew Godwin
Fixed #11160: Formset non_form_errors returns ErrorList() if is_valid is not called
2013-05-19Merge pull request #1134 from senko/ticket_18990Andrew Godwin
Fixed #18990: Loaddata now complains if fixture doesn't exist
2013-05-19Fixed #11915: generic Accept-Language matches country-specific variantsŁukasz Langa
2013-05-19fix warnings imports in fixtures testsSenko Rasic
2013-05-19Fixed #12674 -- provide a way to override admin validationHonza Kral
Moved admin validation code to classes and have those be class attributes to the ModelAdmin classes.
2013-05-19ModelState now freezes options and basesAndrew Godwin
2013-05-19Added TransRealMixin to fix i18n global state pollution in the test suiteŁukasz Langa
2013-05-19Fixed #18990 -- Loaddata now complains if fixture doesn't existSenko Rasic
If the fixture doesn't exist, loaddata will output a warning. The fixture named "initial_data" is exceptional though; if it doesn't exist, the warning is not emitted. This allows syncdb and flush management commands to attempt to load it without causing spurious warnings. Thanks to Derega, ptone, dirigeant and d1ffuz0r for contributions to the ticket.
2013-05-19Fixed #18990: Loaddata now complains if fixture doesn't existSenko Rasic
The fixture named "initial_data" is exceptional though; if it doesn't exist, the error is not raised. This allows syncdb and flush management commands to attempt to load it without causing an error if it doesn't exist.
2013-05-19add comment to explain why it's necessary to do an explicit check forAndrea Crotti
Python2 and how metaclasses are defined
2013-05-19Merge pull request #1116 from elektrrrus/ticket_20234_20236Marc Tamlyn
Ticket 20234 20236
2013-05-18Fixed #20246 -- Added non-breaking spaces between values an unitsEmil Stenström
2013-05-18Fixed #20440 -- Ensured CharField's max_length/min_length are integersTome Cvitan
2013-05-18Fixed #20234 and #20236 -- SingleObjectMixin fixesKarol Sikora
Added object on SingleObjectMixin returned context, some code clanup.
2013-05-18Fixed ff881aef on Python 3.Aymeric Augustin
2013-05-18Fix state tests a littleAndrew Godwin
2013-05-18Fixed #13958 -- problem reporting exception from \r-line-ended fileShai Berger
Thanks petrvanblokland for reporting and saz for the patch
2013-05-18Fixes a Python 3.x regression introduced in a19e9d80Łukasz Langa
2013-05-18Merge branch 'master' of github.com:django/djangoFlorian Apolloner
2013-05-18Fixed #15201: Marked CACHE_MIDDLEWARE_ANONYMOUS_ONLY as deprecatedŁukasz Langa
2013-05-18Fixed #14894 -- Ensure that activating a translation doesn't run into ↵Florian Apolloner
threading issues. Thanks to maxbublis for the report and sergeykolosov for the patch.
2013-05-18Merge branch 'allow-any-iterable-for-choices'Donald Stufft
2013-05-18Fixed #20430 - Enable iterable of iterables for model choicesDonald Stufft
Allows for any iterable, not just lists or tuples, to be used as the inner item for a list of choices in a model.
2013-05-18Merge pull request #1122 from ambv/issue13285Aymeric Augustin
Fixed #13285: populate_xheaders breaks caching
2013-05-18Fixed #13285: populate_xheaders breaks cachingŁukasz Langa
2013-05-18Moved IgnorePendingDeprecationWarningsMixin in django.test.utils.Aymeric Augustin
This mixin is useful whenever deprecating a large part of Django.
2013-05-18Fixed #19436 -- Don't log warnings in ensure_csrf_cookie.Olivier Sels
2013-05-18Merge pull request #1113 from denibertovic/masterAymeric Augustin
Fixed #18761 -- Added whitespace stripping to URLField and SlugField.
2013-05-18Added stripping of whitespace for SlugField and URLFieldDeni Bertovic
2013-05-18Fixed #9595 -- Allow non-expiring cache timeouts.Jacob Burch
Also, streamline the use of 0 and None between cache backends.
2013-05-18Fixes #19919: get_language_from_request() disregards "en-us" and "en" languagesŁukasz Langa
when matching Accept-Language
2013-05-18Merge pull request #1084 from erikr/masterFlorian Apolloner
Fixed #13546 -- Easier handling of localize field options in ModelForm
2013-05-18Merge pull request #1083 from Markush2010/ticket20235Marc Tamlyn
Fixes #20235 - MultipleObjectMixin requires object_list in kwargs
2013-05-18Fixed #13546 -- Easier handling of localize field options in ModelFormErik Romijn
2013-05-18Fixed #20235 -- Use self.object_list if object_list not present in ↵Matthew Somerville
get_context_data kwargs. This is so MultipleObjectMixin can be used in the same way as SingleObjectMixin.
2013-05-18Split up test and make the State classes a bit better.Andrew Godwin
2013-05-18Add a deconstruct() method to Fields.Andrew Godwin
This allows the field's initial argument to be obtained so it can be serialised to, and re-created from, a textual format.
2013-05-18Fixed #11160 - Ensure full_clean is called from non_form_errorsSenko Rasic
Updated FormSet.non_form_errors() to ensure full_clean() has been called before returning the errors.
2013-05-18Made test introduced in 566e284c pass on Python 3.Aymeric Augustin
2013-05-18Added test for multipart, non form-data POST.Senko Rasic
Closes #9054. The bug itself is no longer present.
2013-05-18Fixed #20356 -- Prevented crash when HTTP_REFERER contains non-asciiClaude Paroz
Thanks srusskih for the report and Aymeric Augustin for the review.