Sha256: dacbbdf92c92e998f9f71bf30efa97a42b1e76ea5b59c90778d6f22348ce204f
Contents?: true
Size: 556 Bytes
Versions: 6
Compression:
Stored size: 556 Bytes
Contents
# frozen_string_literal: true require 'simplecov' SimpleCov.start do add_filter 'spec/support/models/' end require 'pry-nav' require 'arstotzka' require 'safe_attribute_assignment' support_files = File.expand_path('spec/support/**/*.rb') Dir[support_files].sort.each { |file| require file } RSpec.configure do |config| config.run_all_when_everything_filtered = true config.filter_run :focus config.filter_run_excluding :integration unless ENV['ALL'] config.include Sinclair::Matchers config.order = 'random' config.before do end end
Version data entries
6 entries across 6 versions & 1 rubygems