aboutsummaryrefslogtreecommitdiffstats
path: root/test/psych/test_yamldbm.rb
diff options
context:
space:
mode:
authorzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-05-25 02:33:51 +0000
committerzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-05-25 02:33:51 +0000
commit7833e69c2ea4c843f6930b4a80795025f36ab155 (patch)
treede07264e399802a8c557597aa1176a3b38ee4f9a /test/psych/test_yamldbm.rb
parent71c4c0b9e73b1df474736efad3b4a41ff51e009d (diff)
downloadruby-7833e69c2ea4c843f6930b4a80795025f36ab155.tar.gz
* lib/yaml.rb: Remove Psych::EngineManager [Bug #8344]
* test/psych/*: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46097 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/psych/test_yamldbm.rb')
-rw-r--r--test/psych/test_yamldbm.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/psych/test_yamldbm.rb b/test/psych/test_yamldbm.rb
index dba9eee2a9..23c7c9e564 100644
--- a/test/psych/test_yamldbm.rb
+++ b/test/psych/test_yamldbm.rb
@@ -13,7 +13,6 @@ module Psych
class YAMLDBMTest < TestCase
def setup
- @engine, YAML::ENGINE.yamler = YAML::ENGINE.yamler, 'psych'
@dir = Dir.mktmpdir("rubytest-file")
File.chown(-1, Process.gid, @dir)
@yamldbm_file = make_tmp_filename("yamldbm")
@@ -21,7 +20,6 @@ module Psych
end
def teardown
- YAML::ENGINE.yamler = @engine
@yamldbm.clear
@yamldbm.close
FileUtils.remove_entry_secure @dir