From 5341e3ccc4a58ae765e6d78c65bdc33157527aec Mon Sep 17 00:00:00 2001 From: tenderlove Date: Tue, 15 May 2012 16:34:21 +0000 Subject: * ext/psych/lib/psych/visitors/to_ruby.rb: convert omap tagged maps to Psych::Omap objects rather than hashes. [Bug #6425] * test/psych/test_omap.rb: pertinent test. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35657 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/psych/test_omap.rb | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'test/psych') diff --git a/test/psych/test_omap.rb b/test/psych/test_omap.rb index 53f55f5aec..34df724998 100644 --- a/test/psych/test_omap.rb +++ b/test/psych/test_omap.rb @@ -2,6 +2,13 @@ require 'psych/helper' module Psych class TestOmap < TestCase + def test_parse_as_map + o = Psych.load "--- !!omap\na: 1\nb: 2" + assert_kind_of Psych::Omap, o + assert_equal 1, o['a'] + assert_equal 2, o['b'] + end + def test_self_referential map = Psych::Omap.new map['foo'] = 'bar' -- cgit v1.2.3