summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-02-05 01:30:01 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-02-05 01:30:01 +0000
commit9cc62abc6b0245e5f0e4a8f0cd9b6f53a4f9bf77 (patch)
tree4f7526602484ab86afcdebcef7e84d97610bd69e /test
parentbc1e4b4e2aa2a5cf6ab9b4dd3ffd8277298cb95e (diff)
* ext/json/parser/parser.h (GET_PARSER): check if initialized.
[ruby-core:35079] * ext/json/parser/parser.rl (cParser_initialize): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30791 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rwxr-xr-xtest/json/test_json.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/json/test_json.rb b/test/json/test_json.rb
index 00e52f511a..cb70085242 100755
--- a/test/json/test_json.rb
+++ b/test/json/test_json.rb
@@ -391,4 +391,11 @@ EOT
json5 = JSON([orig = 1 << 64])
assert_equal orig, JSON[json5][0]
end
+
+ def test_allocate
+ json = JSON::Parser.new("{}")
+ assert_raises(ArgumentError, '[ruby-core:35079]') {json.__send__(:initialize, "{}")}
+ json = JSON::Parser.allocate
+ assert_raises(ArgumentError, '[ruby-core:35079]') {json.source}
+ end
end