diff options
author | R David Murray <rdmurray@bitdance.com> | 2014-01-03 18:03:36 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2014-01-03 18:03:36 (GMT) |
commit | 42fa110035032f252c7691b0129717b2eab32731 (patch) | |
tree | c6eb9ff37c45de3de8ccbd0d053326bc8134c9a1 /Doc/library/unittest.rst | |
parent | a475a8d313805bb84affcba8da7c8e82319d0761 (diff) | |
download | cpython-42fa110035032f252c7691b0129717b2eab32731.zip cpython-42fa110035032f252c7691b0129717b2eab32731.tar.gz cpython-42fa110035032f252c7691b0129717b2eab32731.tar.bz2 |
whatsnew: unittest import time SkipTest reported as skip not error.
Diffstat (limited to 'Doc/library/unittest.rst')
-rw-r--r-- | Doc/library/unittest.rst | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index 3f30127..5cbc51b 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -559,8 +559,9 @@ The following decorators implement test skipping and expected failures: Usually you can use :meth:`TestCase.skipTest` or one of the skipping decorators instead of raising this directly. -Skipped tests will not have :meth:`setUp` or :meth:`tearDown` run around them. -Skipped classes will not have :meth:`setUpClass` or :meth:`tearDownClass` run. +Skipped tests will not have :meth:`~TestCase.setUp` or :meth:`~TestCase.tearDown` run around them. +Skipped classes will not have :meth:`~TestCase.setUpClass` or :meth:`~TestCase.tearDownClass` run. +Skipped modules will not have :func:`setUpModule` or :func:`tearDownModule` run. .. _subtests: |