Sha256: 85f314c1536d8031ae1230291a0b41199a3c965b56afb45e04619e173fed50cf

Contents?: true

Size: 700 Bytes

Versions: 66

Compression:

Stored size: 700 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'
require 'shoulda'

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

class MiniTest::Test
end

MiniTest.autorun

Version data entries

66 entries across 66 versions & 1 rubygems

Version Path
nutella_framework-0.9.2 test/helper.rb
nutella_framework-0.9.1 test/helper.rb
nutella_framework-0.9.0 test/helper.rb
nutella_framework-0.8.0 test/helper.rb
nutella_framework-0.7.3 test/helper.rb
nutella_framework-0.7.2 test/helper.rb
nutella_framework-0.7.1 test/helper.rb
nutella_framework-0.7.0 test/helper.rb
nutella_framework-0.6.21 test/helper.rb
nutella_framework-0.6.20 test/helper.rb
nutella_framework-0.6.19 test/helper.rb
nutella_framework-0.6.18 test/helper.rb
nutella_framework-0.6.17 test/helper.rb
nutella_framework-0.6.16 test/helper.rb
nutella_framework-0.6.15 test/helper.rb
nutella_framework-0.6.13 test/helper.rb
nutella_framework-0.6.12 test/helper.rb
nutella_framework-0.6.11 test/helper.rb
nutella_framework-0.6.10 test/helper.rb
nutella_framework-0.6.9 test/helper.rb