From: Sandro Tosi Date: Sat, 31 Mar 2012 16:34:59 +0000 (+0200) Subject: use unittest.skip; thanks to Chang Min Jeon from docs@ X-Git-Tag: v3.3.0a2~16^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=317075de2981c9283e7af7bcf727ef8ae8ee4f4e;p=thirdparty%2FPython%2Fcpython.git use unittest.skip; thanks to Chang Min Jeon from docs@ --- diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index bdf07a40cb2e..b130a8b08893 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