Sha256: 7012d4198da7cd92ccefee2ed2171e53e25db0bf75fe6463d9e902f49976c17e

Contents?: true

Size: 623 Bytes

Versions: 3

Compression:

Stored size: 623 Bytes

Contents

# encoding: UTF-8

require "rubygems"
gem "minitest"
require 'singleton'

# To make testing/debugging easier, test within this source tree versus an installed gem
dir = File.dirname(__FILE__)
root = File.expand_path(File.join(dir, '..'))
lib = File.expand_path(File.join(root, 'lib'))
ext = File.expand_path(File.join(root, 'ext', 'ruby_prof'))

$LOAD_PATH << lib
$LOAD_PATH << ext

require 'ruby-prof'

# Disable minitest parallel tests. The problem is the thread switching will cahnge test results
# (self vs wait time)
ENV["N"] = "0"
require 'minitest/autorun'

class TestCase < Minitest::Test
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ruby-prof-1.1.0-x64-mingw32 test/test_helper.rb
ruby-prof-1.1.0 test/test_helper.rb
ruby-prof-1.0.0 test/test_helper.rb