summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-09-01 00:25:52 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-09-01 00:25:52 +0000
commitb40ff978ee5af1dcb55fbfe9ec3f1d75d9b2c0ed (patch)
treeef4170c0a5e519f0de8092b38cfe0e162668bda0 /test
parentc9de2578664b0170c41eb61fff526be7120969ed (diff)
merge revision(s) 33148:
------------------------------------------------------------------------ r33148 | naruse | 2011-09-01 09:23:20 +0900 (Thu, 01 Sep 2011) | 1 line Remove tests of json/add/{complex, rational}. ------------------------------------------------------------------------ git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_3@33150 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rwxr-xr-xtest/json/test_json_addition.rb5
1 files changed, 0 insertions, 5 deletions
diff --git a/test/json/test_json_addition.rb b/test/json/test_json_addition.rb
index 6297578f1f..cc3820a073 100755
--- a/test/json/test_json_addition.rb
+++ b/test/json/test_json_addition.rb
@@ -164,9 +164,4 @@ class TC_JSONAddition < Test::Unit::TestCase
d = DateTime.civil(2008, 6, 17, 11, 48, 32, Rational(12,24))
assert_equal d, JSON.parse(d.to_json)
end
-
- def test_rational_complex
- assert_equal Rational(2, 9), JSON(JSON(Rational(2, 9)))
- assert_equal Complex(2, 9), JSON(JSON(Complex(2, 9)))
- end
end