Sha256: 8a48c33e3a2fce1630748559ce611abdd1f499c20c848f42f6e1a2b9a459855a
Contents?: true
Size: 1.43 KB
Versions: 1
Compression:
Stored size: 1.43 KB
Contents
require "set" if ENV['SIMPLE_COV'] require 'simplecov' SimpleCov.start do add_filter 'spec/' add_filter 'pkg/' add_filter 'vendor/' end end if ENV['GC_STRESS'] puts "enable GC.stress" GC.stress = true end require 'msgpack' require "msgpack/bigint" if GC.respond_to?(:verify_compaction_references) # This method was added in Ruby 3.0.0. Calling it this way asks the GC to # move objects around, helping to find object movement bugs. GC.verify_compaction_references(double_heap: true, toward: :empty) end if GC.respond_to?(:auto_compact=) GC.auto_compact = true end IS_JRUBY = RUBY_ENGINE == 'jruby' IS_TRUFFLERUBY = RUBY_ENGINE == 'truffleruby' # checking if Hash#[]= (rb_hash_aset) dedupes string keys def automatic_string_keys_deduplication? h = {} x = {} r = rand.to_s h[%W(#{r}).join('')] = :foo x[%W(#{r}).join('')] = :foo x.keys[0].equal?(h.keys[0]) end def string_deduplication? r1 = rand.to_s r2 = r1.dup (-r1).equal?(-r2) end if IS_JRUBY RSpec.configure do |c| c.treat_symbols_as_metadata_keys_with_true_values = true c.filter_run_excluding :encodings => !(defined? Encoding) end else RSpec.configure do |config| config.expect_with :rspec do |c| c.syntax = [:should, :expect] end end Packer = MessagePack::Packer Unpacker = MessagePack::Unpacker Buffer = MessagePack::Buffer Factory = MessagePack::Factory ExtensionValue = MessagePack::ExtensionValue end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
msgpack-1.5.2 | spec/spec_helper.rb |