summaryrefslogtreecommitdiff
path: root/tests/generic_views/test_base.py
Commit message (Expand)AuthorAgeFilesLines
* Refs #33476 -- Applied Black's 2023 stable style.David Smith2023-02-011-2/+0
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-138/+163
* Refs #32956 -- Capitalized HTTP/HTTPS in comments, docs, and docstrings.David Smith2021-10-201-1/+1
* Refs #32956 -- Changed docs to treat the acronym HTTP phonetically.David Smith2021-10-181-2/+3
* Fixed #32260 -- Made View.as_view() do not use update_wrapper().Daniyal2021-03-301-6/+10
* Fixed #31789 -- Added a new headers interface to HttpResponse.Tom Carrick2020-09-141-5/+5
* Fixed #31877 -- Reverted "Fixed #19878 -- Deprecated TemplateView passing URL...Mariusz Felisiak2020-08-241-39/+20
* Refs #31877 -- Reverted "Fixes #31877 -- Used lazy() for TemplateView kwarg d...Mariusz Felisiak2020-08-241-20/+2
* Fixes #31877 -- Used lazy() for TemplateView kwarg deprecation warning.Adam Johnson2020-08-131-2/+20
* Fixed #19878 -- Deprecated TemplateView passing URL kwargs into context.Adam Johnson2020-03-231-20/+39
* Removed "Don't do that" from docs and error messages.Adam Johnson2020-01-061-2/+2
* Refs #20456 -- Moved initialization of HEAD method based on GET to the View.s...Felipe Lee2019-10-301-0/+7
* Refs #20456 -- Added test for initialization of request/args/kwargs attribute...Felipe Lee2019-10-301-0/+11
* Fixed typo in tests/generic_views/test_base.py.Tim Graham2019-06-041-1/+1
* Fixed #29750 -- Added View.setup() hook for class-based views.François Freitag2018-12-211-0/+26
* Tested exception messages in generic_views tests.François Freitag2018-12-041-10/+24
* Used assertRaisesMessage() to test Django's error messages.Mads Jensen2017-07-291-1/+5
* Fixed #28331 -- Added ContextMixin.extra_context to allowing passing context ...Bruno Alla2017-07-061-0/+4
* Refs #23968 -- Removed unnecessary lists, generators, and tuple calls.Jon Dufresne2017-06-011-2/+1
* Fixed #26911 -- Removed NoReverseMatch silencing in RedirectView.Grzegorz Tężycki2017-03-011-5/+0
* Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand2017-01-251-1/+1
* Refs #23919 -- Removed encoding preambles and future importsClaude Paroz2017-01-181-2/+0
* Refs #27392 -- Removed "Tests that", "Ensures that", etc. from test docstrings.za2016-11-101-9/+9
* Replaced use of TestCase.fail() with assertRaises().Tim Graham2016-06-281-8/+2
* Refs #26022 -- Used context manager version of assertRaises in tests.Hasan2016-01-291-4/+8
* Fixed #26013 -- Moved django.core.urlresolvers to django.urls.Marten Kenbeek2015-12-311-1/+1
* Fixed #25780 -- Removed redundant status code assertions from testsAlex Morozov2015-11-211-1/+0
* Refs #24652 -- Used SimpleTestCase where appropriate.Simon Charette2015-05-201-3/+3
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-2/+2
* Fixed #24168 -- Allowed selecting a template engine in a few APIs.Aymeric Augustin2015-02-031-1/+15
* Changed RedirectView.permanent to False per deprecation timeline; refs #21587.Tim Graham2015-01-181-90/+29
* Fixed #24055 -- Keep reference to view class for resolve()Collin Anderson2015-01-171-0/+10
* Applied ignore_warnings to Django testsClaude Paroz2014-12-301-3/+3
* Fixed #21587 -- Added a warning for changing default of RedirectView.permanent.Berker Peksag2014-11-251-1/+68
* Fixed #23620 -- Used more specific assertions in the Django test suite.Berker Peksag2014-11-031-1/+1
* Fixed #21977 -- Deprecated SimpleTestCase.urlsAnubhav Joshi2014-04-061-3/+3
* Fixed #21564 -- Use local request object when possible in generic views.Baptiste Mispelon2013-12-161-0/+18
* PEP8 cleanupJason Myers2013-11-021-0/+1
* Removed unused local variables in tests.Tim Graham2013-10-191-2/+2
* fixed test name from an old, overly specific iteration of the testIan Wilson2013-09-061-1/+1
* adds fix for SingleObjectTemplateResponseMixin raising a TemplateDoesNotExist...Ian Wilson2013-09-061-0/+12
* Removed most of absolute_import importsClaude Paroz2013-07-291-1/+1
* Stopped using django.utils.unittest in the test suite.Aymeric Augustin2013-07-011-1/+1
* Fixed #15273 -- Extend RedirectView to allow reversal by name.Marc Tamlyn2013-06-141-1/+19
* Fixed #20478 – Added support for HTTP PATCH method in generic views.Krzysztof Jurewicz2013-05-221-0/+6
* Use assertIsInstance in tests.Marc Tamlyn2013-05-211-2/+2
* Fixed #20234 and #20236 -- SingleObjectMixin fixesKarol Sikora2013-05-181-0/+13
* Fixed #20235 -- Use self.object_list if object_list not present in get_contex...Matthew Somerville2013-05-181-0/+20
* Modified generic_views for unittest2 discovery.Preston Timmons2013-04-121-0/+413