Sha256: 0f630053b781e35cd54d168cadb46ba91687393564bc372de252e396228b7f85
Contents?: true
Size: 435 Bytes
Versions: 2
Compression:
Stored size: 435 Bytes
Contents
# encoding: UTF-8 require 'bundler/setup' require 'minitest/autorun' # Disable minitest parallel tests. The problem is the thread switching will change test results # (self vs wait time) if Gem::Version.new(Minitest::VERSION) > Gem::Version.new('5.11.3') ENV["MT_CPU"] = "0" # Newer versions minitest else ENV["N"] = "0" # Older versions of minitest end require 'ruby-prof' class TestCase < Minitest::Test end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ruby-prof-1.4.3-x64-mingw32 | test/test_helper.rb |
ruby-prof-1.4.3 | test/test_helper.rb |