Sha256: ba456fc960c5e37a120786a35a72136b6a2597248e72602516547415afea1e73

Contents?: true

Size: 795 Bytes

Versions: 12

Compression:

Stored size: 795 Bytes

Contents

#!/usr/bin/env ruby
# frozen_string_literal: true

$LOAD_PATH << __dir__
@oj_dir = File.dirname(File.expand_path(__dir__))
%w(lib ext).each do |dir|
  $LOAD_PATH << File.join(@oj_dir, dir)
end

require 'test_compat'
require 'test_custom'
require 'test_fast'
require 'test_file'
require 'test_gc'
require 'test_hash'
require 'test_null'
require 'test_object'
require 'test_saj'
require 'test_scp'
require 'test_strict'
require 'test_rails'
require 'test_wab'
require 'test_writer'
require 'test_integer_range'

at_exit do
  require 'helper'
  if '3.1.0' <= RUBY_VERSION && RbConfig::CONFIG['host_os'] !~ /(mingw|mswin)/
    # Oj::debug_odd("teardown before GC.verify_compaction_references")
    verify_gc_compaction
    # Oj::debug_odd("teardown after GC.verify_compaction_references")
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
oj-3.16.9 test/tests.rb
oj-3.16.8 test/tests.rb
oj-3.16.7 test/tests.rb
oj-3.16.6 test/tests.rb
oj-3.16.5 test/tests.rb
oj-3.16.4 test/tests.rb
oj-3.16.3 test/tests.rb
oj-3.16.2 test/tests.rb
oj-3.16.1 test/tests.rb
oj-3.16.0 test/tests.rb
oj-3.15.1 test/tests.rb
oj-3.15.0 test/tests.rb