summaryrefslogtreecommitdiff
path: root/test/json
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-09-01 00:23:20 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-09-01 00:23:20 +0000
commit91e4b4f6d8ca1813df814d74e2675df196a64ff0 (patch)
tree9deaf93cbea97ada13f87ee6a116f5c9d666b9b9 /test/json
parent0d475da8056ec4731872a5290cdabe94b53d4f64 (diff)
Remove tests of json/add/{complex, rational}.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33148 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/json')
-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