summaryrefslogtreecommitdiffstats
path: root/Doc/library/unittest.rst
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2010-11-22 12:56:58 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2010-11-22 12:56:58 (GMT)
commit2baf1a69f4d72e2107b0941a625fd7603f45ae38 (patch)
treecbd05dd5996a313b0cb813e2d8d01819b6154244 /Doc/library/unittest.rst
parent60fafa276cefc677839927a0647c8bda3703be0b (diff)
downloadcpython-2baf1a69f4d72e2107b0941a625fd7603f45ae38.zip
cpython-2baf1a69f4d72e2107b0941a625fd7603f45ae38.tar.gz
cpython-2baf1a69f4d72e2107b0941a625fd7603f45ae38.tar.bz2
#9424: add a DeprecationWarning for assertEquals, assertNotEquals, assertAlmostEquals, assertNotAlmostEquals, and assert_
Diffstat (limited to 'Doc/library/unittest.rst')
-rw-r--r--Doc/library/unittest.rst28
1 files changed, 16 insertions, 12 deletions
diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst
index 640ed4b..91fede0 100644
--- a/Doc/library/unittest.rst
+++ b/Doc/library/unittest.rst
@@ -1401,6 +1401,8 @@ Test cases
:mod:`unittest`-based test framework.
+.. _deprecated-aliases:
+
Deprecated aliases
##################
@@ -1408,20 +1410,22 @@ For historical reasons, some of the :class:`TestCase` methods had one or more
aliases that are now deprecated. The following table lists the correct names
along with their deprecated aliases:
- ============================== ===============================
- Method Name Deprecated alias(es)
- ============================== ===============================
- :meth:`.assertEqual` failUnlessEqual, assertEquals
- :meth:`.assertNotEqual` failIfEqual
- :meth:`.assertTrue` failUnless, assert\_
+ ============================== ====================== ======================
+ Method Name Deprecated alias Deprecated alias
+ ============================== ====================== ======================
+ :meth:`.assertEqual` failUnlessEqual assertEquals
+ :meth:`.assertNotEqual` failIfEqual assertNotEquals
+ :meth:`.assertTrue` failUnless assert\_
:meth:`.assertFalse` failIf
:meth:`.assertRaises` failUnlessRaises
- :meth:`.assertAlmostEqual` failUnlessAlmostEqual
- :meth:`.assertNotAlmostEqual` failIfAlmostEqual
- ============================== ===============================
-
- .. deprecated:: 3.1
- the aliases listed in the second column
+ :meth:`.assertAlmostEqual` failUnlessAlmostEqual assertAlmostEquals
+ :meth:`.assertNotAlmostEqual` failIfAlmostEqual assertNotAlmostEquals
+ ============================== ====================== ======================
+
+ .. deprecated-removed:: 3.1 3.3
+ the fail* aliases listed in the second column.
+ .. deprecated:: 3.2
+ the assert* aliases listed in the third column.