commit | 6ca845c66a726b3db128b6a64d88d74628792950 | [log] [tgz] |
---|---|---|
author | Sandro Tosi <sandro.tosi@gmail.com> | Sat Mar 31 18:34:42 2012 +0200 |
committer | Sandro Tosi <sandro.tosi@gmail.com> | Sat Mar 31 18:34:42 2012 +0200 |
tree | 310a70bbeaf1ff51c3c1605f765571bb0e470e34 | |
parent | 93a224dd7563212a5457e4efd2a3981a2323895d [diff] |
use unittest.skip; thanks to Chang Min Jeon from docs@
diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index b53c029..36a1532 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst
@@ -616,7 +616,7 @@ 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