Sha256: 09a17b83a7e0e79b4474dbc9335bef8a5524d1c4b5985899b36cbd662eb84f59

Contents?: true

Size: 686 Bytes

Versions: 35

Compression:

Stored size: 686 Bytes

Contents

require 'simplecov'

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

SimpleCov.configure do
  clean_filters
  load_adapter '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 'minimum_viable_product'

class Test::Unit::TestCase
end

Version data entries

35 entries across 35 versions & 2 rubygems

Version Path
mvpkit-2.0.2 test/helper.rb
mvpkit-2.0.1 test/helper.rb
mvpkit-2.0.0 test/helper.rb
mvpkit-1.1.2 test/helper.rb
mvpkit-1.1.1 test/helper.rb
mvpkit-1.1.0 test/helper.rb
mvpkit-1.0.4 test/helper.rb
mvpkit-1.0.3 test/helper.rb
mvpkit-1.0.2 test/helper.rb
mvpkit-1.0.1 test/helper.rb
mvpkit-1.0.0 test/helper.rb
mvpkit-0.8.1 test/helper.rb
mvpkit-0.8.0 test/helper.rb
minimum_viable_product-0.7.15 test/helper.rb
minimum_viable_product-0.7.14 test/helper.rb
minimum_viable_product-0.7.13 test/helper.rb
minimum_viable_product-0.7.12 test/helper.rb
minimum_viable_product-0.7.11 test/helper.rb
minimum_viable_product-0.7.10 test/helper.rb
minimum_viable_product-0.7.9 test/helper.rb