Sha256: 10a98bfbbe90b45e6b8d7ab237a67527dea519cc498f5e7459bc801a7831d925

Contents?: true

Size: 534 Bytes

Versions: 4

Compression:

Stored size: 534 Bytes

Contents

if !ENV['BUNDLE_GEMFILE'] || ENV['BUNDLE_GEMFILE'] =~ /default.gemfile\z/
  if ENV['CI']
    require 'codeclimate-test-reporter'
    CodeClimate::TestReporter.start
  else
    require 'simplecov'
    SimpleCov.start do
      add_filter 'vendor'
    end
  end
end

require 'rspec'
require 'pry'

require 'schema_expectations'

Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each do |file|
  require file
end

RSpec.configure do |config|
  config.raise_errors_for_deprecations!

  config.include SchemaExpectations::RSpecMatchers
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
schema_expectations-0.5.0 spec/spec_helper.rb
schema_expectations-0.4.0 spec/spec_helper.rb
schema_expectations-0.3.0 spec/spec_helper.rb
schema_expectations-0.2.0 spec/spec_helper.rb