summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_unittest.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_unittest.py')
-rw-r--r--Lib/test/test_unittest.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/Lib/test/test_unittest.py b/Lib/test/test_unittest.py
index 40de797..108802d 100644
--- a/Lib/test/test_unittest.py
+++ b/Lib/test/test_unittest.py
@@ -2834,6 +2834,21 @@ test case
self.assertRaisesRegexp, Exception,
re.compile('^Expected$'), Stub)
+ def testAssertRaisesExcValue(self):
+ class ExceptionMock(Exception):
+ pass
+
+ def Stub(foo):
+ raise ExceptionMock(foo)
+ v = "particular value"
+
+ ctx = self.assertRaises(ExceptionMock)
+ with ctx:
+ Stub(v)
+ e = ctx.exc_value
+ self.assertTrue(isinstance(e, ExceptionMock))
+ self.assertEqual(e.args[0], v)
+
def testSynonymAssertMethodNames(self):
"""Test undocumented method name synonyms.