From aabceadd7d7a61468b0dc7dc9d560a770abae0cf Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Mon, 28 Apr 2014 18:41:16 -0400 Subject: Revert "Fixed #15179 -- middlewares not applied for test client login()" This reverts commit 4fdd51b73240bf9c8d9472fcc45df699f0714755. See the ticket for concerns with this implementation; it will be revisited. --- docs/releases/1.7.txt | 5 ----- docs/topics/testing/tools.txt | 14 -------------- 2 files changed, 19 deletions(-) (limited to 'docs') diff --git a/docs/releases/1.7.txt b/docs/releases/1.7.txt index 7357fe0bfb..3cd832e750 100644 --- a/docs/releases/1.7.txt +++ b/docs/releases/1.7.txt @@ -802,11 +802,6 @@ Tests :class:`~django.test.Client`. If ``True``, the request will be made through HTTPS. -* Requests made with :meth:`Client.login() ` and - :meth:`Client.logout() ` respect defaults defined - in :class:`~django.test.Client` instantiation and are processed through - middleware. - * :meth:`~django.test.TransactionTestCase.assertNumQueries` now prints out the list of executed queries if the assertion fails. diff --git a/docs/topics/testing/tools.txt b/docs/topics/testing/tools.txt index 883bfaf9cd..c41e35d647 100644 --- a/docs/topics/testing/tools.txt +++ b/docs/topics/testing/tools.txt @@ -360,13 +360,6 @@ Use the ``django.test.Client`` class to make requests. :meth:`~django.contrib.auth.models.UserManager.create_user` helper method to create a new user with a correctly hashed password. - .. versionadded:: 1.7 - - Requests made with :meth:`~django.test.Client.login` go through the - request middleware. If you need to control the environment, you can - do so at :class:`~django.test.Client` instantiation or with the - `Client.defaults` attribute. - .. method:: Client.logout() If your site uses Django's :doc:`authentication system`, @@ -377,13 +370,6 @@ Use the ``django.test.Client`` class to make requests. and session data cleared to defaults. Subsequent requests will appear to come from an :class:`~django.contrib.auth.models.AnonymousUser`. - .. versionadded:: 1.7 - - Requests made with :meth:`~django.test.Client.logout` go through the - request middleware. If you need to control the environment, you can - do so at :class:`~django.test.Client` instantiation or with the - `Client.defaults` attribute. - Testing responses ~~~~~~~~~~~~~~~~~ -- cgit v1.3