Sha256: 4b24267d919589ad1b0e43bd9a9546a52e39349f892720a48c745d432b314b93
Contents?: true
Size: 747 Bytes
Versions: 1
Compression:
Stored size: 747 Bytes
Contents
# frozen_string_literal: true # Coverage require 'coveralls' Coveralls.wear! do add_filter 'spec' end # ENV['RAILS_ENV'] ||= 'test' require File.expand_path('../dummy/config/environment', __FILE__) require 'rspec/rails' Rails.backtrace_cleaner.remove_silencers! # Requires supporting ruby files with custom matchers and macros, etc, # in spec/support/ and its subdirectories. Dir[File.expand_path('../support/**/*.rb', __FILE__)].each {|f| require f } # Checks for pending migrations before tests are run. # If you are not using ActiveRecord, you can remove this line. if defined?(ActiveRecord::Migration) && Rails::VERSION::MAJOR >= 4 ActiveRecord::Migration.check_pending! end RSpec.configure do |config| config.order = 'random' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rails-rfc6570-2.2.0 | spec/spec_helper.rb |