Sha256: b10205727c1285d1bebe48cf00b81bebbf4784e865daeae01caf730506e9a40d

Contents?: true

Size: 674 Bytes

Versions: 9

Compression:

Stored size: 674 Bytes

Contents

require 'simplecov'

module SimpleCov::Configuration
  def clean_filters
    @filters = []
  end
end

SimpleCov.configure do
  clean_filters
  load_profile 'test_frameworks'
end

ENV["COVERAGE"] && SimpleCov.start do
  add_filter "/.rvm/"
end
require 'rubygems'
require 'bundler'
begin
  Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
  $stderr.puts e.message
  $stderr.puts "Run `bundle install` to install missing gems"
  exit e.status_code
end
require 'test/unit'
require 'shoulda'

$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
$LOAD_PATH.unshift(File.dirname(__FILE__))
require 'blockscore'

class Test::Unit::TestCase
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
blockscore-3.0.1 test/helper.rb
blockscore-3.0.0 test/helper.rb
blockscore-2.1.2 test/helper.rb
blockscore-2.1.1 test/helper.rb
blockscore-2.1.0 test/helper.rb
blockscore-2.0.1 test/helper.rb
blockscore-2.0.0 test/helper.rb
blockscore-1.0.1 test/helper.rb
blockscore-1.0.0 test/helper.rb