From 1c92766bf0b7394057c00f576fce5464a3037fd9 Mon Sep 17 00:00:00 2001 From: hsbt Date: Sat, 20 Oct 2018 04:25:04 +0000 Subject: Merge Pysch-3.1.0.pre2 from ruby/psych. * Added deprecated warnings for the new interface of keyword argument. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65193 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/psych/test_safe_load.rb | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'test/psych/test_safe_load.rb') diff --git a/test/psych/test_safe_load.rb b/test/psych/test_safe_load.rb index 82a5f19c36..6c7a8d0f5a 100644 --- a/test/psych/test_safe_load.rb +++ b/test/psych/test_safe_load.rb @@ -3,6 +3,14 @@ require 'psych/helper' module Psych class TestSafeLoad < TestCase + def setup + @orig_verbose, $VERBOSE = $VERBOSE, nil + end + + def teardown + $VERBOSE = @orig_verbose + end + class Foo; end [1, 2.2, {}, [], "foo"].each do |obj| -- cgit v1.2.3