Commit 5170bb29 authored by Tres Seaver's avatar Tres Seaver

Backport r124565 from the trunk.

parent e728c7b5
...@@ -115,26 +115,6 @@ class ExceptionHookTestCase(unittest.TestCase): ...@@ -115,26 +115,6 @@ class ExceptionHookTestCase(unittest.TestCase):
class ExceptionHookTest(ExceptionHookTestCase): class ExceptionHookTest(ExceptionHookTestCase):
def testStringException1(self):
from zExceptions import Unauthorized
def f():
raise 'Unauthorized', 'x'
if sys.version_info < (2, 6):
self.assertRaises(Unauthorized, self.call, None, None, f)
else:
# Raising a string exception causes a TypeError on Python 2.6
self.assertRaises(TypeError, self.call, None, None, f)
def testStringException2(self):
from zExceptions import Redirect
def f():
raise 'Redirect', 'x'
if sys.version_info < (2, 6):
self.assertRaises(Redirect, self.call, None, None, f)
else:
# Raising a string exception causes a TypeError on Python 2.6
self.assertRaises(TypeError, self.call, None, None, f)
def testSystemExit(self): def testSystemExit(self):
def f(): def f():
raise SystemExit, 1 raise SystemExit, 1
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment