summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXuân Baldauf <xuan--2016--json--xb--github.com@software.baldauf.org>2017-03-19 13:26:07 +0100
committerXuân Baldauf <xuan--2016--json--xb--github.com@software.baldauf.org>2017-03-19 13:26:07 +0100
commit3b7f8b0e76d6e5a33cbf0f91fe252b6625768512 (patch)
treeb311efec2d152760256a7ae68dc239883db01403
parentc9fc0f047b11497bb30c75880a9f5af7698d350b (diff)
downloadjson-3b7f8b0e76d6e5a33cbf0f91fe252b6625768512.tar.gz
Actually test BigDecimal parsing.
-rw-r--r--tests/json_parser_test.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/json_parser_test.rb b/tests/json_parser_test.rb
index 40ad500..f36e9c8 100644
--- a/tests/json_parser_test.rb
+++ b/tests/json_parser_test.rb
@@ -108,6 +108,11 @@ class JSONParserTest < Test::Unit::TestCase
assert_equal -1.0/0, parse('-Infinity', :allow_nan => true)
end
+ def test_parse_bigdecimals
+ assert_equal(BigDecimal, JSON.parse('{"foo": 9.01234567890123456789}', decimal_class: BigDecimal)["foo"].class)
+ assert_equal(BigDecimal.new("0.901234567890123456789E1"),JSON.parse('{"foo": 9.01234567890123456789}', decimal_class: BigDecimal)["foo"] )
+ end
+
if Array.method_defined?(:permutation)
def test_parse_more_complex_arrays
a = [ nil, false, true, "foßbar", [ "n€st€d", true ], { "nested" => true, "n€ßt€ð2" => {} }]