summaryrefslogtreecommitdiff
path: root/test/psych/test_json_tree.rb
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2010-02-17 22:44:26 -0800
committerAaron Patterson <aaron.patterson@gmail.com>2010-02-17 22:44:26 -0800
commitebf212880db752979336cfc613bac7c3d0d83d32 (patch)
treebd9853664f5dab8da1d34f817516a54e0d05a219 /test/psych/test_json_tree.rb
parent7e3a927e6b7e1a63bc16b9c74eb931dc3eb6a983 (diff)
downloadpsych-ebf212880db752979336cfc613bac7c3d0d83d32.zip
adding basic json support
Diffstat (limited to 'test/psych/test_json_tree.rb')
-rw-r--r--test/psych/test_json_tree.rb44
1 files changed, 44 insertions, 0 deletions
diff --git a/test/psych/test_json_tree.rb b/test/psych/test_json_tree.rb
new file mode 100644
index 0000000..d839d81
--- /dev/null
+++ b/test/psych/test_json_tree.rb
@@ -0,0 +1,44 @@
+require 'minitest/autorun'
+require 'psych'
+
+module Psych
+ class TestJSONTree < MiniTest::Unit::TestCase
+ def test_string
+ assert_match(/(['"])foo\1/, Psych.to_json("foo"))
+ end
+
+ def test_symbol
+ assert_match(/(['"])foo\1/, 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
+
+ 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