Sha256: 417528bb6222ca2b163b35f47a0f9b54379b8261f470ef8aaf6cafd004fa7ff7

Contents?: true

Size: 530 Bytes

Versions: 11

Compression:

Stored size: 530 Bytes

Contents

#!/usr/bin/env ruby
# encoding: UTF-8

#frozen_string_literal: false

require 'json_gem/test_helper'

class JSONExtParserTest < Test::Unit::TestCase
  include Test::Unit::TestCaseOmissionSupport

  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

11 entries across 11 versions & 1 rubygems

Version Path
oj-3.16.7 test/json_gem/json_ext_parser_test.rb
oj-3.16.6 test/json_gem/json_ext_parser_test.rb
oj-3.16.5 test/json_gem/json_ext_parser_test.rb
oj-3.16.4 test/json_gem/json_ext_parser_test.rb
oj-3.16.3 test/json_gem/json_ext_parser_test.rb
oj-3.16.2 test/json_gem/json_ext_parser_test.rb
oj-3.16.1 test/json_gem/json_ext_parser_test.rb
oj-3.16.0 test/json_gem/json_ext_parser_test.rb
oj-3.15.1 test/json_gem/json_ext_parser_test.rb
oj-3.15.0 test/json_gem/json_ext_parser_test.rb
oj-3.14.3 test/json_gem/json_ext_parser_test.rb