Sha256: 8ee5431aba1cf34be05efc3ee9440f47001ccd2132d99ae7c202931ac98acfea

Contents?: true

Size: 569 Bytes

Versions: 9

Compression:

Stored size: 569 Bytes

Contents

# frozen_string_literal: true

require 'simplecov'
SimpleCov.start do
  add_filter 'spec/'
end

require 'pry-nav'
require 'arstotzka'
require 'safe_attribute_assignment'
require 'sinclair/matchers'

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

9 entries across 9 versions & 1 rubygems

Version Path
arstotzka-1.6.2 spec/spec_helper.rb
arstotzka-1.6.1 spec/spec_helper.rb
arstotzka-1.6.0 spec/spec_helper.rb
arstotzka-1.5.0 spec/spec_helper.rb
arstotzka-1.4.4 spec/spec_helper.rb
arstotzka-1.4.3 spec/spec_helper.rb
arstotzka-1.4.2 spec/spec_helper.rb
arstotzka-1.4.1 spec/spec_helper.rb
arstotzka-1.4.0 spec/spec_helper.rb