summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_binhex.py
diff options
context:
space:
mode:
authorThomas Wouters <thomas@python.org>2000-08-04 13:34:43 (GMT)
committerThomas Wouters <thomas@python.org>2000-08-04 13:34:43 (GMT)
commitb9fa0a843e239bcdaecbe16aaa508e9e25b5afce (patch)
treebc3650354409d9aca1dc994ebc293c2a3c99a498 /Lib/test/test_binhex.py
parent040c17fe38f17575d57ef2aecd6d9955d24cb0c6 (diff)
downloadcpython-b9fa0a843e239bcdaecbe16aaa508e9e25b5afce.zip
cpython-b9fa0a843e239bcdaecbe16aaa508e9e25b5afce.tar.gz
cpython-b9fa0a843e239bcdaecbe16aaa508e9e25b5afce.tar.bz2
Raise 'TestSkipped' (from the test_support) module rather than 'ImportError'
to signify a test that should be marked as 'skipped' rather than 'failed'. Also 'document' it, in README.
Diffstat (limited to 'Lib/test/test_binhex.py')
-rwxr-xr-xLib/test/test_binhex.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_binhex.py b/Lib/test/test_binhex.py
index 534fa73..d7f6016 100755
--- a/Lib/test/test_binhex.py
+++ b/Lib/test/test_binhex.py
@@ -6,7 +6,7 @@
"""
import binhex
import tempfile
-from test_support import verbose
+from test_support import verbose, TestSkipped
def test():
@@ -15,7 +15,7 @@ def test():
fname2 = tempfile.mktemp()
f = open(fname1, 'w')
except:
- raise ImportError, "Cannot test binhex without a temp file"
+ raise TestSkipped, "Cannot test binhex without a temp file"
start = 'Jack is my hero'
f.write(start)