1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/test/psych/test_json_tree.rb
yugui 137c52d909 merges a part of r30931 from trunk into ruby_1_9_2.
--
* 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/branches/ruby_1_9_2@31767 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2011-05-28 23:31:16 +00:00

54 lines
1.1 KiB
Ruby

require_relative 'helper'
module Psych
class TestJSONTree < TestCase
def test_string
assert_match(/"foo"/, Psych.to_json("foo"))
end
def test_symbol
assert_match(/"foo"/, Psych.to_json(:foo))
end
def test_nil
assert_match(/^null/, Psych.to_json(nil))
end
def test_int
assert_match(/^10/, Psych.to_json(10))
end
def test_float
assert_match(/^1.2/, Psych.to_json(1.2))
end
def test_hash
hash = { 'one' => 'two' }
json = Psych.to_json(hash)
assert_match(/}$/, json)
assert_match(/^\{/, json)
assert_match(/['"]one['"]/, json)
assert_match(/['"]two['"]/, 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
json = Psych.to_json Bar.new
refute_match('omg', json)
end
def test_list_to_json
list = %w{ one two }
json = Psych.to_json(list)
assert_match(/]$/, json)
assert_match(/^\[/, json)
assert_match(/"one"/, json)
assert_match(/"two"/, json)
end
end
end