1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* test/psych/test_yamldbm.rb: don't run test if the system

don't support yaml/dbm.

* test/syck/test_yamldbm.rb: ditto.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33438 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ktsj 2011-10-09 02:18:18 +00:00
parent 82f1f640ec
commit a30fd3b660
3 changed files with 25 additions and 10 deletions

View file

@ -1,10 +1,14 @@
# -*- coding: UTF-8 -*-
require 'test/unit'
require 'yaml/dbm'
require 'tmpdir'
Syck::DBM = YAML::DBM unless defined?(Syck::DBM)
begin
require 'test/unit'
require 'yaml/dbm'
require 'tmpdir'
rescue LoadError
end
module Syck
::Syck::DBM = ::YAML::DBM unless defined?(::Syck::DBM)
class YAMLDBMTest < Test::Unit::TestCase
def setup
@engine, YAML::ENGINE.yamler = YAML::ENGINE.yamler, 'syck'
@ -187,4 +191,4 @@ module Syck
assert_equal([], @yamldbm.select {false})
end
end
end
end if defined?(YAML::DBM)