Sha256: 1da54657428faef2f9a1e3e7230d0ef6dd3444b342a7d7292abcaf6295efab17

Contents?: true

Size: 668 Bytes

Versions: 10

Compression:

Stored size: 668 Bytes

Contents

# encoding: UTF-8

# To make testing/debugging easier test within this source tree versus an installed gem
require 'bundler/setup'

# Add ext directory to load path to make it easier to test locally built extensions
ext_path = File.expand_path(File.join(__dir__, '..', 'ext', 'ruby_prof'))
$LOAD_PATH.unshift(File.expand_path(ext_path))

# Now load code
require 'ruby-prof'

# Disable minitest parallel tests. The problem is the thread switching will change test results
# (self vs wait time)
ENV["MT_CPU"] = "0" # New versions of minitest
ENV["N"] = "0" # Older versions of minitest

require 'minitest/autorun'
class TestCase < Minitest::Test
end

Version data entries

10 entries across 10 versions & 2 rubygems

Version Path
ruby-prof-1.7.1-x64-mingw-ucrt test/test_helper.rb
ruby-prof-1.7.1 test/test_helper.rb
ruby-prof-1.7.0-x64-mingw-ucrt test/test_helper.rb
ruby-prof-1.7.0 test/test_helper.rb
honeybadger-5.4.0 vendor/bundle/ruby/3.2.0/gems/ruby-prof-1.6.3/test/test_helper.rb
honeybadger-5.3.0 vendor/bundle/ruby/3.2.0/gems/ruby-prof-1.6.3/test/test_helper.rb
ruby-prof-1.6.3-x64-mingw-ucrt test/test_helper.rb
ruby-prof-1.6.3 test/test_helper.rb
ruby-prof-1.6.2-x64-mingw-ucrt test/test_helper.rb
ruby-prof-1.6.2 test/test_helper.rb