Sha256: 326fd00728daced7159f1c02b2b4c5857f66c258011590d0daa5e5ad66aa3bd6
Contents?: true
Size: 860 Bytes
Versions: 9
Compression:
Stored size: 860 Bytes
Contents
require 'codeclimate-test-reporter' CodeClimate::TestReporter.start require 'simplecov' SimpleCov.start 'rails' require 'rspec' require 'rspec/core/formatters/base_formatter' require 'cadre/rspec3' ENV["RAILS_ENV"] ||= 'test' require File.expand_path("../dummy/config/environment", __FILE__) require 'rspec/rails' #require 'rspec/autorun' 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.infer_base_class_for_anonymous_controllers = false 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
9 entries across 9 versions & 1 rubygems