Add stacktrace.

This commit is contained in:
Eric Snow 2018-03-09 00:55:38 +00:00
parent a16f5d4250
commit 0e3abe4927

View file

@ -1600,6 +1600,12 @@ class ExceptionInfoTests(NormalRequestTest, unittest.TestCase):
details=dict(
message=excstr,
typeName='RuntimeError',
source='abc.py',
stackTrace='\n'.join([
' File "abc.py", line 10, in spam',
' """A decorator indicating abstract methods.',
'',
]),
),
),
])