зеркало из https://github.com/github/ruby.git
* test/psych/test_yamldbm.rb (require): fix #setup and #terdown.
[Bug #5370] [ruby-core:39730] * test/syck/test_yamldbm.rb (require): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33340 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
7b6677f1e6
Коммит
375d9f9112
|
@ -1,3 +1,9 @@
|
||||||
|
Tue Sep 27 03:32:27 2011 Ayumu AIZAWA <ayumu.aizawa@gmail.com>
|
||||||
|
|
||||||
|
* test/psych/test_yamldbm.rb (require): fix #setup and #terdown.
|
||||||
|
[Bug #5370] [ruby-core:39730]
|
||||||
|
* test/syck/test_yamldbm.rb (require): ditto.
|
||||||
|
|
||||||
Mon Sep 26 11:27:38 2011 NARUSE, Yui <naruse@ruby-lang.org>
|
Mon Sep 26 11:27:38 2011 NARUSE, Yui <naruse@ruby-lang.org>
|
||||||
|
|
||||||
* lib/webrick/httputils.rb: Add MIME Type definition of .js and .svg.
|
* lib/webrick/httputils.rb: Add MIME Type definition of .js and .svg.
|
||||||
|
|
|
@ -1,19 +1,28 @@
|
||||||
# -*- coding: UTF-8 -*-
|
# -*- coding: UTF-8 -*-
|
||||||
require 'test/unit'
|
require 'test/unit'
|
||||||
require 'yaml/dbm'
|
require 'yaml/dbm'
|
||||||
|
require 'tmpdir'
|
||||||
Psych::DBM = YAML::DBM unless defined?(Psych::DBM)
|
Psych::DBM = YAML::DBM unless defined?(Psych::DBM)
|
||||||
|
|
||||||
module Psych
|
module Psych
|
||||||
class YAMLDBMTest < Test::Unit::TestCase
|
class YAMLDBMTest < Test::Unit::TestCase
|
||||||
def setup
|
def setup
|
||||||
@engine, YAML::ENGINE.yamler = YAML::ENGINE.yamler, 'psych'
|
@engine, YAML::ENGINE.yamler = YAML::ENGINE.yamler, 'psych'
|
||||||
@yamldbm_file = "yamldbm.tmp.#{Process.pid}"
|
@dir = Dir.mktmpdir("rubytest-file")
|
||||||
|
File.chown(-1, Process.gid, @dir)
|
||||||
|
@yamldbm_file = make_tmp_filename("yamldbm")
|
||||||
@yamldbm = YAML::DBM.new(@yamldbm_file)
|
@yamldbm = YAML::DBM.new(@yamldbm_file)
|
||||||
end
|
end
|
||||||
|
|
||||||
def teardown
|
def teardown
|
||||||
YAML::ENGINE.yamler = @engine
|
YAML::ENGINE.yamler = @engine
|
||||||
File.unlink(@yamldbm_file + '.db') rescue nil
|
@yamldbm.clear
|
||||||
|
@yamldbm.close
|
||||||
|
FileUtils.remove_entry_secure @dir
|
||||||
|
end
|
||||||
|
|
||||||
|
def make_tmp_filename(prefix)
|
||||||
|
@dir + "/" + prefix + File.basename(__FILE__) + ".#{$$}.test"
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_store
|
def test_store
|
||||||
|
|
|
@ -1,19 +1,28 @@
|
||||||
# -*- coding: UTF-8 -*-
|
# -*- coding: UTF-8 -*-
|
||||||
require 'test/unit'
|
require 'test/unit'
|
||||||
require 'yaml/dbm'
|
require 'yaml/dbm'
|
||||||
|
require 'tmpdir'
|
||||||
Syck::DBM = YAML::DBM unless defined?(Syck::DBM)
|
Syck::DBM = YAML::DBM unless defined?(Syck::DBM)
|
||||||
|
|
||||||
module Syck
|
module Syck
|
||||||
class YAMLDBMTest < Test::Unit::TestCase
|
class YAMLDBMTest < Test::Unit::TestCase
|
||||||
def setup
|
def setup
|
||||||
@engine, YAML::ENGINE.yamler = YAML::ENGINE.yamler, 'syck'
|
@engine, YAML::ENGINE.yamler = YAML::ENGINE.yamler, 'psych'
|
||||||
@yamldbm_file = "yamldbm.tmp.#{Process.pid}"
|
@dir = Dir.mktmpdir("rubytest-file")
|
||||||
|
File.chown(-1, Process.gid, @dir)
|
||||||
|
@yamldbm_file = make_tmp_filename("yamldbm")
|
||||||
@yamldbm = YAML::DBM.new(@yamldbm_file)
|
@yamldbm = YAML::DBM.new(@yamldbm_file)
|
||||||
end
|
end
|
||||||
|
|
||||||
def teardown
|
def teardown
|
||||||
YAML::ENGINE.yamler = @engine
|
YAML::ENGINE.yamler = @engine
|
||||||
File.unlink(@yamldbm_file + '.db') rescue nil
|
@yamldbm.clear
|
||||||
|
@yamldbm.close
|
||||||
|
FileUtils.remove_entry_secure @dir
|
||||||
|
end
|
||||||
|
|
||||||
|
def make_tmp_filename(prefix)
|
||||||
|
@dir + "/" + prefix + File.basename(__FILE__) + ".#{$$}.test"
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_store
|
def test_store
|
||||||
|
|
Загрузка…
Ссылка в новой задаче