Sha256: 8aadb7528f4f91ee28d575338ef404cacb408704182204d91bf4c9732557d0c9

Contents?: true

Size: 602 Bytes

Versions: 9

Compression:

Stored size: 602 Bytes

Contents

# frozen_string_literal: true

require 'simplecov'

SimpleCov.profiles.define 'gem' do
  add_filter '/spec/'
end

SimpleCov.start 'gem'

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

support_files = File.expand_path('spec/support/**/*.rb')
Dir[support_files].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.order = 'random'
  config.include Sinclair::Matchers
end

RSpec::Matchers.define_negated_matcher :not_change, :change

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
sinclair-1.5.0 spec/spec_helper.rb
sinclair-1.4.2 spec/spec_helper.rb
sinclair-1.4.1 spec/spec_helper.rb
sinclair-1.4.0 spec/spec_helper.rb
sinclair-1.3.4 spec/spec_helper.rb
sinclair-1.3.3 spec/spec_helper.rb
sinclair-1.3.2 spec/spec_helper.rb
sinclair-1.3.1 spec/spec_helper.rb
sinclair-1.3.0 spec/spec_helper.rb