diff options
author | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-06-26 02:52:46 +0000 |
---|---|---|
committer | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-06-26 02:52:46 +0000 |
commit | 46724873b0daf109d7f249a6ca768bdb938c00da (patch) | |
tree | 9893eb0353d8c236bc335df5211551e5b45b233c /test/psych/test_yamlstore.rb | |
parent | 94a6e6f6e1ab035207efb94b1f77341cd21ee4b3 (diff) |
Revert "Revert "* lib/yaml.rb: Remove Psych::EngineManager [Bug #8344]""
syck-1.0.3 gem support this imcompatible changes.
This reverts commit r46102
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46559 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/psych/test_yamlstore.rb')
-rw-r--r-- | test/psych/test_yamlstore.rb | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/test/psych/test_yamlstore.rb b/test/psych/test_yamlstore.rb index 19471b1e35..94f1330d37 100644 --- a/test/psych/test_yamlstore.rb +++ b/test/psych/test_yamlstore.rb @@ -7,7 +7,6 @@ module Psych class YAMLStoreTest < TestCase def setup - @engine, YAML::ENGINE.yamler = YAML::ENGINE.yamler, 'psych' @dir = Dir.mktmpdir("rubytest-file") File.chown(-1, Process.gid, @dir) @yamlstore_file = make_tmp_filename("yamlstore") @@ -15,7 +14,6 @@ module Psych end def teardown - YAML::ENGINE.yamler = @engine FileUtils.remove_entry_secure @dir end |