]> granicus.if.org Git - python/commitdiff
use unittest.skip; thanks to Chang Min Jeon from docs@
authorSandro Tosi <sandro.tosi@gmail.com>
Sat, 31 Mar 2012 16:34:42 +0000 (18:34 +0200)
committerSandro Tosi <sandro.tosi@gmail.com>
Sat, 31 Mar 2012 16:34:42 +0000 (18:34 +0200)
Doc/library/unittest.rst

index b53c029249a589f31fdbebfe9703788f594c167d..36a1532fe47f2a194a40e563f9eb2adcf8f331f5 100644 (file)
@@ -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