diff options
author | Fred Drake <fdrake@acm.org> | 2000-08-21 16:55:57 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-08-21 16:55:57 (GMT) |
commit | 62c53ddabef25f3dd4fa2019ee998a3f4189a3bd (patch) | |
tree | 8a3d3c7f0ad2663687cfdb1c5d0f1f1c3b467fb2 /Lib/test/README | |
parent | 45ab2b65f695dbb4c334fb442f4da483f6deed9f (diff) | |
download | cpython-62c53ddabef25f3dd4fa2019ee998a3f4189a3bd.zip cpython-62c53ddabef25f3dd4fa2019ee998a3f4189a3bd.tar.gz cpython-62c53ddabef25f3dd4fa2019ee998a3f4189a3bd.tar.bz2 |
Add TestSkipped as another interesting item defined by test_support.
Diffstat (limited to 'Lib/test/README')
-rw-r--r-- | Lib/test/README | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/test/README b/Lib/test/README index 94b1964..ae39d27 100644 --- a/Lib/test/README +++ b/Lib/test/README @@ -145,6 +145,10 @@ provides the following useful objects: * TestFailed - raise this exception when your regression test detects a failure. + * TestSkipped - raise this if the test could not be run because the + platform doesn't offer all the required facilities (like large + file support), even if all the required modules are available. + * findfile(file) - you can call this function to locate a file somewhere along sys.path or in the Lib/test tree - see test_linuxaudiodev.py for an example of its use. |