From 6f37c467d47483aac7bf5336a72446452e7ae251 Mon Sep 17 00:00:00 2001 From: tenderlove Date: Mon, 21 Feb 2011 01:56:10 +0000 Subject: * ext/psych/lib/psych/json/stream.rb: do not emit custom tags in maps or sequences when emitting JSON. * ext/psych/lib/psych/json/tree_builder.rb: do not emit custom tags in sequences when emitting JSON. * test/psych/json/test_stream.rb: tests for custom stream emits. * test/psych/test_json_tree.rb: tests for JSON emits. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30931 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/psych/json/test_stream.rb | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'test/psych/json/test_stream.rb') diff --git a/test/psych/json/test_stream.rb b/test/psych/json/test_stream.rb index 252535abaa..45d0219aad 100644 --- a/test/psych/json/test_stream.rb +++ b/test/psych/json/test_stream.rb @@ -71,6 +71,26 @@ module Psych assert_match(/["]two["]/, json) end + class Foo; end + + def test_json_dump_exclude_tag + @stream << Foo.new + json = @io.string + refute_match('Foo', json) + end + + class Bar + def encode_with coder + coder.represent_seq 'omg', %w{ a b c } + end + end + + def test_json_list_dump_exclude_tag + @stream << Bar.new + json = @io.string + refute_match('omg', json) + end + def test_time time = Time.utc(2010, 10, 10) @stream.push({'a' => time }) -- cgit v1.2.3