Sha256: 1f50b7c39206950591efdabab5264e17c402cf83d329f9f1821dde2c536bd9d8
Contents?: true
Size: 759 Bytes
Versions: 1
Compression:
Stored size: 759 Bytes
Contents
DEBUG = ENV['DEBUG'] == 'true' ruby_version = Gem::Version.new(RUBY_VERSION) if ruby_version >= Gem::Version.new('2.7') require 'simplecov' require 'coveralls' SimpleCov.formatters = [SimpleCov::Formatter::HTMLFormatter, Coveralls::SimpleCov::Formatter] SimpleCov.start do add_filter '/spec' minimum_coverage(95) end end require 'byebug' if DEBUG && ruby_version >= Gem::Version.new('2.4') require 'oauth2' require 'addressable/uri' require 'rspec' require 'rspec/stubbed_env' require 'silent_stream' RSpec.configure do |config| config.expect_with :rspec do |c| c.syntax = :expect end end Faraday.default_adapter = :test RSpec.configure do |conf| conf.include SilentStream end VERBS = [:get, :post, :put, :delete].freeze
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
oauth2-1.4.7 | spec/helper.rb |