Sha256: 6f0f5cd6767177e19f4075aa9135fa96adb325994e350aee3564544659898472
Contents?: true
Size: 683 Bytes
Versions: 28
Compression:
Stored size: 683 Bytes
Contents
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib')) $LOAD_PATH.unshift(File.dirname(__FILE__)) require 'rubygems' require 'rspec' TESTFILES = File.dirname(__FILE__) + '/testfiles' # Requires supporting files with custom matchers and macros, etc, # in ./support/ and its subdirectories. Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f} RSpec.configure do |config| config.color_enabled = true config.tty = true config.formatter = :documentation # :progress, :html, :textmate #config.formatter = :progress # :progress, :html, :textmate end def benchmark(*args, &block) if ENV['BENCHMARK'] Benchmark.bmbm(*args, &block) end end
Version data entries
28 entries across 28 versions & 1 rubygems