From 6ca845c66a726b3db128b6a64d88d74628792950 Mon Sep 17 00:00:00 2001 From: Sandro Tosi Date: Sat, 31 Mar 2012 18:34:42 +0200 Subject: [PATCH] use unittest.skip; thanks to Chang Min Jeon from docs@ --- Doc/library/unittest.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.50.1