summaryrefslogtreecommitdiff
path: root/docs/topics/testing
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2017-01-02 10:25:57 -0500
committerTim Graham <timograham@gmail.com>2017-01-17 20:52:05 -0500
commite27e4c03399f610e0db1fb9b881095d762fda2b7 (patch)
tree11bd3fc4e762fad072ef29c0498daab3cba49554 /docs/topics/testing
parent401c5b2e42bf9134d9221f446765dd0777306f0b (diff)
Removed versionadded/changed annotations for 1.10.
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::