summaryrefslogtreecommitdiff
path: root/docs/topics/testing
diff options
context:
space:
mode:
Diffstat (limited to 'docs/topics/testing')
-rw-r--r--docs/topics/testing/tools.txt13
1 files changed, 0 insertions, 13 deletions
diff --git a/docs/topics/testing/tools.txt b/docs/topics/testing/tools.txt
index 5bb34be1a3..b8c799619e 100644
--- a/docs/topics/testing/tools.txt
+++ b/docs/topics/testing/tools.txt
@@ -371,12 +371,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.
- .. versionchanged:: 1.10
-
- In previous versions, inactive users (:attr:`is_active=False
- <django.contrib.auth.models.User.is_active>`) were not permitted
- to login.
-
.. method:: Client.force_login(user, backend=None)
If your site uses Django's :doc:`authentication
@@ -795,11 +789,6 @@ The class:
* Checks deferrable database constraints at the end of each test.
-.. versionchanged:: 1.10
-
- The check for deferrable database constraints at the end of each test was
- added.
-
It also provides an additional method:
.. classmethod:: TestCase.setUpTestData()
@@ -1604,8 +1593,6 @@ your test suite.
Tagging tests
-------------
-.. versionadded:: 1.10
-
You can tag your tests so you can easily run a particular subset. For example,
you might label fast or slow tests::