Sha256: 49cedd18a58fdece616a5f4af9f09f71ad8dc6bc8863221326a245df0cc97f76

Contents?: true

Size: 553 Bytes

Versions: 2

Compression:

Stored size: 553 Bytes

Contents

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.order = 'random'

  config.before do
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
arstotzka-1.0.1 spec/spec_helper.rb
arstotzka-1.0.0 spec/spec_helper.rb