Sha256: b0543198555327cb570919c850c58a9a8c68bbf775ae0105bd7bcb17e986dce0
Contents?: true
Size: 620 Bytes
Versions: 1
Compression:
Stored size: 620 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.treat_symbols_as_metadata_keys_with_true_values = true 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
arstotzka-1.0.2 | spec/spec_helper.rb |