summaryrefslogtreecommitdiff
path: root/tests/test_json.rb
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_json.rb')
-rwxr-xr-xtests/test_json.rb8
1 files changed, 2 insertions, 6 deletions
diff --git a/tests/test_json.rb b/tests/test_json.rb
index e9a125d..462650e 100755
--- a/tests/test_json.rb
+++ b/tests/test_json.rb
@@ -491,6 +491,8 @@ EOT
assert_equal @hash, JSON.load(stringio)
assert_equal nil, JSON.load(nil)
assert_equal nil, JSON.load('')
+ ensure
+ tempfile.close!
end
def test_load_with_options
@@ -515,12 +517,6 @@ EOT
assert_equal too_deep, output.string
end
- def test_dump_should_modify_defaults
- max_nesting = JSON.dump_default_options[:max_nesting]
- JSON.dump([], StringIO.new, 101)
- assert_equal max_nesting, JSON.dump_default_options[:max_nesting]
- end
-
def test_big_integers
json1 = JSON([orig = (1 << 31) - 1])
assert_equal orig, JSON[json1][0]