diff options
author | Fred Drake <fdrake@acm.org> | 2002-07-02 22:46:42 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2002-07-02 22:46:42 (GMT) |
commit | c412617779c6847f3f0992ad978657a242336fd3 (patch) | |
tree | 8356c995ca45e6b4e6a672e42c62bfb04f690468 /Doc | |
parent | 387c8b5f37278c969fe8bf24291de57a62ec6422 (diff) | |
download | cpython-c412617779c6847f3f0992ad978657a242336fd3.zip cpython-c412617779c6847f3f0992ad978657a242336fd3.tar.gz cpython-c412617779c6847f3f0992ad978657a242336fd3.tar.bz2 |
Add annotations that describe the change in the "errors" and "failures"
attributes of the TestResult.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libunittest.tex | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/lib/libunittest.tex b/Doc/lib/libunittest.tex index e2ce91a..980d706 100644 --- a/Doc/lib/libunittest.tex +++ b/Doc/lib/libunittest.tex @@ -619,12 +619,16 @@ be of interest when inspecting the results of running a set of tests: A list containing pairs of \class{TestCase} instances and the formatted tracebacks for tests which raised an exception but did not signal a test failure. + \versionchanged[Contains formatted tracebacks instead of + \function{sys.exc_info()} results]{2.2} \end{memberdesc} \begin{memberdesc}[TestResult]{failures} A list containing pairs of \class{TestCase} instances and the formatted tracebacks for tests which signalled a failure in the code under test. + \versionchanged[Contains formatted tracebacks instead of + \function{sys.exc_info()} results]{2.2} \end{memberdesc} \begin{memberdesc}[TestResult]{testsRun} |