Sha256: 4dd2191368e4fe00a9085d43a9687c75810e1c3f6a300d756383c1a5b00a2b82
Contents?: true
Size: 802 Bytes
Versions: 1
Compression:
Stored size: 802 Bytes
Contents
require 'simplecov' require 'sendgrid-threads' require 'byebug' require 'webmock/rspec' require 'timecop' require 'active_support/all' module SimpleCov::Configuration def clean_filters @filters = [] end end SimpleCov.configure do clean_filters load_adapter 'test_frameworks' end ENV["COVERAGE"] && SimpleCov.start do WebMock.disable_net_connect!(allow: "codeclimate.com") CodeClimate::TestReporter.start end $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib')) $LOAD_PATH.unshift(File.dirname(__FILE__)) require 'rspec' require "codeclimate-test-reporter" # 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
sendgrid-threads-0.1.0 | spec/spec_helper.rb |