diff options
author | Sandro Tosi <sandro.tosi@gmail.com> | 2012-03-31 16:35:16 (GMT) |
---|---|---|
committer | Sandro Tosi <sandro.tosi@gmail.com> | 2012-03-31 16:35:16 (GMT) |
commit | 4cc229ad6507ff6cd38f843115ecdbd1cb3466b8 (patch) | |
tree | 941b78cbc8c2c7db9b4b6467345ec02cccdddd7e /Doc/library/unittest.rst | |
parent | 8613b0dea4b5150539853e32afd5b5c53be07e5e (diff) | |
parent | 317075de2981c9283e7af7bcf727ef8ae8ee4f4e (diff) | |
download | cpython-4cc229ad6507ff6cd38f843115ecdbd1cb3466b8.zip cpython-4cc229ad6507ff6cd38f843115ecdbd1cb3466b8.tar.gz cpython-4cc229ad6507ff6cd38f843115ecdbd1cb3466b8.tar.bz2 |
merge with 3.2
Diffstat (limited to 'Doc/library/unittest.rst')
-rw-r--r-- | Doc/library/unittest.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index bf58cad..a51e947 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -640,7 +640,7 @@ This is the output of running the example above in verbose mode: :: Classes can be skipped just like methods: :: - @skip("showing class skipping") + @unittest.skip("showing class skipping") class MySkippedTestCase(unittest.TestCase): def test_not_run(self): pass |