summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2019-01-09 13:34:51 -0800
committerAaron Patterson <aaron.patterson@gmail.com>2019-01-09 13:34:51 -0800
commite07a9d845410db939c22d357fdcebca5a7b00006 (patch)
tree36540abdd3e1e6286f6da14b4674e91c939d93f3 /test
parent28e6e8b8aa606fd67a3a1e02ee08d2f6b24b185d (diff)
downloadpsych-e07a9d845410db939c22d357fdcebca5a7b00006.zip
Round trip exception backtraces
This commit allows exception backtraces to round trip
Diffstat (limited to 'test')
-rw-r--r--test/psych/test_exception.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/psych/test_exception.rb b/test/psych/test_exception.rb
index df7fd73..e7fc88c 100644
--- a/test/psych/test_exception.rb
+++ b/test/psych/test_exception.rb
@@ -23,6 +23,20 @@ module Psych
$VERBOSE = @orig_verbose
end
+ def make_ex msg = 'oh no!'
+ begin
+ raise msg
+ rescue ::Exception => e
+ e
+ end
+ end
+
+ def test_backtrace
+ err = make_ex
+ new_err = Psych.load(Psych.dump(err))
+ assert_equal err.backtrace, new_err.backtrace
+ end
+
def test_naming_exception
err = String.xxx rescue $!
new_err = Psych.load(Psych.dump(err))