From 317075de2981c9283e7af7bcf727ef8ae8ee4f4e Mon Sep 17 00:00:00 2001 From: Sandro Tosi Date: Sat, 31 Mar 2012 18:34:59 +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 bdf07a40cb2..b130a8b0889 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