From: Sandro Tosi Date: Sat, 31 Mar 2012 16:34:42 +0000 (+0200) Subject: use unittest.skip; thanks to Chang Min Jeon from docs@ X-Git-Tag: v2.7.4rc1~932 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6ca845c66a726b3db128b6a64d88d74628792950;p=python use unittest.skip; thanks to Chang Min Jeon from docs@ --- diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index b53c029249..36a1532fe4 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -616,7 +616,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