Sha256: 1be7c5943d8a22b8c2bfa68a375e4a0946e2b6d0a327efb3391fb5c496927dca
Contents?: true
Size: 658 Bytes
Versions: 5
Compression:
Stored size: 658 Bytes
Contents
require 'codeclimate-test-reporter' CodeClimate::TestReporter.start SimpleCov.start require 'rspec' require 'rspec/core/formatters/base_formatter' require 'cadre/rspec3' ENV["RAILS_ENV"] ||= 'test' ENGINE_RAILS_ROOT=File.join(File.dirname(__FILE__), '../') Dir[File.join(ENGINE_RAILS_ROOT, "spec_help/support/**/*.rb")].each {|f| require f } RSpec.configure do |config| config.run_all_when_everything_filtered = true config.add_formatter(Cadre::RSpec3::NotifyOnCompleteFormatter) config.add_formatter(Cadre::RSpec3::QuickfixFormatter) config.around(:type => :deprecation) do |example| ActiveSupport::Deprecation.silence(&example) end end
Version data entries
5 entries across 5 versions & 1 rubygems