summaryrefslogtreecommitdiff
path: root/test/syck
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-06-14 01:06:41 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-06-14 01:06:41 +0000
commit5174425678a68c4c18ecd9d0007e494f49ab1520 (patch)
treeae43c18160e767326af9398c1f4bef910d5ee93f /test/syck
parentcedc12ce9c085ccebc9bde2508a6e6f448afed48 (diff)
Copy YAML::Store to Syck::Store to keep it from yamler.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32075 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/syck')
-rw-r--r--test/syck/test_yamlstore.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/syck/test_yamlstore.rb b/test/syck/test_yamlstore.rb
index 5363de5002..8a52c00828 100644
--- a/test/syck/test_yamlstore.rb
+++ b/test/syck/test_yamlstore.rb
@@ -1,6 +1,6 @@
require 'test/unit'
-require 'syck'
require 'yaml/store'
+Syck::Store = YAML::Store unless defined?(Syck::Store)
module Syck
class YAMLStoreTest < Test::Unit::TestCase