Skip to content

Commit

Permalink
YAML::ENGINE was removed in [Bug #8344]
Browse files Browse the repository at this point in the history
  • Loading branch information
Zachary Scott committed May 25, 2014
1 parent b6e8b10 commit fa6aac2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 51 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.rdoc
@@ -1,3 +1,7 @@
Sun May 25 11:35:41 2014 Zachary Scott <e@zzak.io>

* test/psych/*: YAML::ENGINE was removed in [Bug #8344]

2014-03-27 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>

* ext/psych/yaml/scanner.c: merge libyaml 0.1.6
Expand Down
47 changes: 0 additions & 47 deletions test/psych/test_engine_manager.rb

This file was deleted.

2 changes: 0 additions & 2 deletions test/psych/test_yamldbm.rb
Expand Up @@ -13,15 +13,13 @@ 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")
@yamldbm = YAML::DBM.new(@yamldbm_file)
end

def teardown
YAML::ENGINE.yamler = @engine
@yamldbm.clear
@yamldbm.close
FileUtils.remove_entry_secure @dir
Expand Down
2 changes: 0 additions & 2 deletions test/psych/test_yamlstore.rb
Expand Up @@ -7,15 +7,13 @@ 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")
@yamlstore = YAML::Store.new(@yamlstore_file)
end

def teardown
YAML::ENGINE.yamler = @engine
FileUtils.remove_entry_secure @dir
end

Expand Down

0 comments on commit fa6aac2

Please sign in to comment.