Sha256: d70b6ffdc25305504893b4d012bd720183fc107c6376a957c3be2308a912aabb

Contents?: true

Size: 676 Bytes

Versions: 33

Compression:

Stored size: 676 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 'minitest/autorun'

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

class MiniTest::Test
end

MiniTest.autorun

Version data entries

33 entries across 33 versions & 1 rubygems

Version Path
nutella_lib-0.4.7 test/helper.rb
nutella_lib-0.4.6 test/helper.rb
nutella_lib-0.4.5 test/helper.rb
nutella_lib-0.4.4 test/helper.rb
nutella_lib-0.4.3 test/helper.rb
nutella_lib-0.4.2 test/helper.rb
nutella_lib-0.4.1 test/helper.rb
nutella_lib-0.4.0 test/helper.rb
nutella_lib-0.3.1 test/helper.rb
nutella_lib-0.3.0 test/helper.rb
nutella_lib-0.2.2 test/helper.rb
nutella_lib-0.2.1 test/helper.rb
nutella_lib-0.2.0 test/helper.rb