aboutsummaryrefslogtreecommitdiffstats
path: root/test/syck/test_yaml.rb
diff options
context:
space:
mode:
authortenderlove <tenderlove@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-04-11 01:45:15 +0000
committertenderlove <tenderlove@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-04-11 01:45:15 +0000
commitf3668748149f814f29c2a32a91914672ee966699 (patch)
treee357df4d4c8eb9a3fad82075a95ebd95779312c0 /test/syck/test_yaml.rb
parentff5366a7053a2d420139e32fb3936ee85a2839fe (diff)
downloadruby-f3668748149f814f29c2a32a91914672ee966699.tar.gz
* test/syck/test_struct.rb: modified to use only syck engine since the
YAML is invalid. * test/syck/test_yaml.rb: ditto * test/syck/test_yamlstore.rb: modifications for multi-engine environment. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27296 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/syck/test_yaml.rb')
-rw-r--r--test/syck/test_yaml.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/syck/test_yaml.rb b/test/syck/test_yaml.rb
index ece1b768e3..1a78e9d216 100644
--- a/test/syck/test_yaml.rb
+++ b/test/syck/test_yaml.rb
@@ -13,6 +13,15 @@ end
module Syck
class YAML_Unit_Tests < Test::Unit::TestCase
+ def setup
+ @current_engine = YAML::ENGINE.yamler
+ YAML::ENGINE.yamler = 'syck'
+ end
+
+ def teardown
+ YAML::ENGINE.yamler = @current_engine
+ end
+
#
# Convert between YAML and the object to verify correct parsing and
# emitting