summaryrefslogtreecommitdiff
path: root/test/json/json_common_interface_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/json/json_common_interface_test.rb')
-rw-r--r--test/json/json_common_interface_test.rb8
1 files changed, 6 insertions, 2 deletions
diff --git a/test/json/json_common_interface_test.rb b/test/json/json_common_interface_test.rb
index 1f157da026..96f7ccdf92 100644
--- a/test/json/json_common_interface_test.rb
+++ b/test/json/json_common_interface_test.rb
@@ -174,9 +174,9 @@ class JSONCommonInterfaceTest < Test::Unit::TestCase
end
def test_dump_should_modify_defaults
- max_nesting = JSON.dump_default_options[:max_nesting]
+ max_nesting = JSON._dump_default_options[:max_nesting]
dump([], StringIO.new, 10)
- assert_equal max_nesting, JSON.dump_default_options[:max_nesting]
+ assert_equal max_nesting, JSON._dump_default_options[:max_nesting]
end
def test_JSON
@@ -211,6 +211,10 @@ class JSONCommonInterfaceTest < Test::Unit::TestCase
end
end
+ def test_deprecated_dump_default_options
+ assert JSON.dump_default_options
+ end
+
private
def with_external_encoding(encoding)