summaryrefslogtreecommitdiff
path: root/test/syck/test_omap.rb
diff options
context:
space:
mode:
authortenderlove <tenderlove@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-04-11 00:37:42 +0000
committertenderlove <tenderlove@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-04-11 00:37:42 +0000
commita5f05e7ee9823fb04dea5219cafce5c5d879e305 (patch)
tree20f3f4210efe0016efa0cc25172ef0c045feebdd /test/syck/test_omap.rb
parent711b5f35ace061074e74579ad61609dae9482a14 (diff)
* test/syck/*: Moved test/yaml to test/syck since it's actually
testing the syck YAML engine. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27292 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/syck/test_omap.rb')
-rw-r--r--test/syck/test_omap.rb56
1 files changed, 56 insertions, 0 deletions
diff --git a/test/syck/test_omap.rb b/test/syck/test_omap.rb
new file mode 100644
index 0000000000..8a2d7075b6
--- /dev/null
+++ b/test/syck/test_omap.rb
@@ -0,0 +1,56 @@
+require 'test/unit'
+require 'yaml'
+
+module Syck
+ class TestOmap < Test::Unit::TestCase
+ def test_keys
+ map = YAML::Omap.new
+ map['foo'] = 'bar'
+ assert_equal 'bar', map['foo']
+ end
+
+ def test_order
+ map = YAML::Omap.new
+ map['a'] = 'b'
+ map['b'] = 'c'
+ assert_equal [%w{a b}, %w{b c}], map.to_a
+ end
+
+ def test_square
+ list = [["a", "b"], ["b", "c"]]
+ map = YAML::Omap[*list.flatten]
+ assert_equal list, map.to_a
+ assert_equal 'b', map['a']
+ assert_equal 'c', map['b']
+ end
+
+ def test_to_yaml
+ map = YAML::Omap['a', 'b', 'c', 'd']
+ yaml = map.to_yaml
+ assert_match('!omap', yaml)
+ assert_match('- a: b', yaml)
+ assert_match('- c: d', yaml)
+ end
+
+ def test_round_trip
+ list = [["a", "b"], ["b", "c"]]
+ map = YAML::Omap[*list.flatten]
+ loaded = YAML.load(YAML.dump(map))
+
+ assert_equal map, loaded
+ assert_equal list, loaded.to_a
+ end
+
+ ###
+ # FIXME: Syck should also support !!omap as shorthand
+ def test_load
+ list = [["a", "b"], ["c", "d"]]
+ map = YAML.load(<<-eoyml)
+--- !omap
+- a: b
+- c: d
+ eoyml
+ assert_equal list, map.to_a
+ end
+ end
+end