-
Notifications
You must be signed in to change notification settings - Fork 152
/
Copy pathspec_helper.rb
31 lines (23 loc) · 949 Bytes
/
spec_helper.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# frozen_string_literal: true
require 'simplecov'
require 'coveralls'
# This works around the hash extensions not being automatically included in ActiveSupport < 4
require 'active_support/version'
require 'active_support/core_ext/hash' if ActiveSupport::VERSION &&
ActiveSupport::VERSION::MAJOR &&
ActiveSupport::VERSION::MAJOR < 4
# Skip code covarge on Ruby >= 3.1
# See https://github.com/simplecov-ruby/simplecov/issues/1003
unless RUBY_VERSION >= '3.1'
SimpleCov.start do
add_filter 'spec/'
end
Coveralls.wear! unless RUBY_PLATFORM.eql? 'java'
end
$LOAD_PATH.unshift(File.dirname(__FILE__))
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), 'support'))
require 'rubygems'
require 'bundler'
Bundler.require :default, :test
RSpec.configure(&:raise_errors_for_deprecations!)