Sha256: e317bdb4e5334c580f54d747855886480d54005f4747d09f1709643ad8710980

Contents?: true

Size: 573 Bytes

Versions: 17

Compression:

Stored size: 573 Bytes

Contents

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

17 entries across 17 versions & 1 rubygems

Version Path
xing-framework-1.0.0.pre.beta.1 spec_help/spec_helper.rb
xing-framework-1.0.0.pre.beta spec_help/spec_helper.rb
xing-framework-1.0.0.pre.alpha spec_help/spec_helper.rb
xing-framework-0.3.2 spec_help/spec_helper.rb
xing-framework-0.3.1 spec_help/spec_helper.rb
xing-framework-0.3.0 spec_help/spec_helper.rb
xing-framework-0.2.9 spec_help/spec_helper.rb
xing-framework-0.2.9.beta1 spec_help/spec_helper.rb
xing-framework-0.2.8 spec_help/spec_helper.rb
xing-framework-0.2.8.beta1 spec_help/spec_helper.rb
xing-framework-0.2.7 spec_help/spec_helper.rb
xing-framework-0.2.7.pre.beta1 spec_help/spec_helper.rb
xing-framework-0.2.6 spec_help/spec_helper.rb
xing-framework-0.2.5 spec_help/spec_helper.rb
xing-framework-0.2.4 spec_help/spec_helper.rb
xing-framework-0.2.3 spec_help/spec_helper.rb
xing-framework-0.2.2 spec_help/spec_helper.rb