summaryrefslogtreecommitdiff
path: root/test/psych
diff options
context:
space:
mode:
Diffstat (limited to 'test/psych')
-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 df7fd73740..e7fc88c706 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))