#17329: document unittest.SkipTest. Initial patch by Zachary Ware.

This commit is contained in:
Ezio Melotti 2013-03-27 20:11:55 +02:00
parent 23790b4be0
commit 352def0ed2
2 changed files with 11 additions and 4 deletions

View file

@ -26,7 +26,7 @@ class SkipTest(Exception):
"""
Raise this exception in a test to skip it.
Usually you can use TestResult.skip() or one of the skipping decorators
Usually you can use TestCase.skipTest() or one of the skipping decorators
instead of raising this directly.
"""
pass