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.27 test/helper.rb
nutella_lib-0.4.26 test/helper.rb
nutella_lib-0.4.25 test/helper.rb
nutella_lib-0.4.24 test/helper.rb
nutella_lib-0.4.23 test/helper.rb
nutella_lib-0.4.22 test/helper.rb
nutella_lib-0.4.21 test/helper.rb
nutella_lib-0.4.20 test/helper.rb
nutella_lib-0.4.19 test/helper.rb
nutella_lib-0.4.18 test/helper.rb
nutella_lib-0.4.17 test/helper.rb
nutella_lib-0.4.16 test/helper.rb
nutella_lib-0.4.15 test/helper.rb
nutella_lib-0.4.14 test/helper.rb
nutella_lib-0.4.13 test/helper.rb
nutella_lib-0.4.12 test/helper.rb
nutella_lib-0.4.11 test/helper.rb
nutella_lib-0.4.10 test/helper.rb
nutella_lib-0.4.9 test/helper.rb
nutella_lib-0.4.8 test/helper.rb