Sha256: 588fdaa3fd9c932357851029f6e545141e7323fcadaf15ee83f7921979b7a30e

Contents?: true

Size: 434 Bytes

Versions: 136

Compression:

Stored size: 434 Bytes

Contents

#frozen_string_literal: false
require 'test_helper'

class JSONExtParserTest < Test::Unit::TestCase
  if defined?(JSON::Ext::Parser)
    def test_allocate
      parser = JSON::Ext::Parser.new("{}")
      assert_raise(TypeError, '[ruby-core:35079]') do
        parser.__send__(:initialize, "{}")
      end
      parser = JSON::Ext::Parser.allocate
      assert_raise(TypeError, '[ruby-core:35079]') { parser.source }
    end
  end
end

Version data entries

136 entries across 125 versions & 22 rubygems

Version Path
logstash-input-salesforce-3.0.0 vendor/jruby/1.9/gems/json-2.0.3-java/tests/json_ext_parser_test.rb
json-2.0.3-java tests/json_ext_parser_test.rb
json_pure-2.0.3 tests/json_ext_parser_test.rb
json-2.0.3 tests/json_ext_parser_test.rb
abaci-0.3.0 vendor/bundle/gems/json-2.0.2/tests/json_ext_parser_test.rb
abaci-0.3.0 vendor/bundle/gems/json-2.0.1/tests/json_ext_parser_test.rb
ruby-compiler-0.1.1 vendor/ruby/test/json/json_ext_parser_test.rb
json-2.0.2-java tests/json_ext_parser_test.rb
json_pure-2.0.2 tests/json_ext_parser_test.rb
json-2.0.2 tests/json_ext_parser_test.rb
json-2.0.1-java tests/json_ext_parser_test.rb
json_pure-2.0.1 tests/json_ext_parser_test.rb
json-2.0.1 tests/json_ext_parser_test.rb
json-2.0.0-java tests/json_ext_parser_test.rb
json_pure-2.0.0 tests/json_ext_parser_test.rb
json-2.0.0 tests/json_ext_parser_test.rb