Sha256: 3a765633d882192e4ff5ba327ae8b59736da91e91c0b4570ff25dd2057507518
Contents?: true
Size: 672 Bytes
Versions: 2
Compression:
Stored size: 672 Bytes
Contents
require 'simplecov' require "codeclimate-test-reporter" CodeClimate::TestReporter.start 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 $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib')) $LOAD_PATH.unshift(File.dirname(__FILE__)) require 'rspec' require 'rack-tor-tag' # Requires supporting files with custom matchers and macros, etc, # in ./support/ and its subdirectories. Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f} RSpec.configure do |config| end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rack-tor-tag-0.3.1 | spec/spec_helper.rb |
rack-tor-tag-0.2.7 | spec/spec_helper.rb |