Sha256: 283d9ee083ca28c1a9320f65ca357a50d240c7c806d0b4f2630affa5b7048aea

Contents?: true

Size: 584 Bytes

Versions: 5

Compression:

Stored size: 584 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'
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

5 entries across 5 versions & 1 rubygems

Version Path
arstotzka-1.3.2 spec/spec_helper.rb
arstotzka-1.3.1 spec/spec_helper.rb
arstotzka-1.3.0 spec/spec_helper.rb
arstotzka-1.2.4 spec/spec_helper.rb
arstotzka-1.2.3 spec/spec_helper.rb