Sha256: 7882f635454f1ea4c3d7fe24dae00400c3ccfb97133bd30d1e3c69d6a2850526

Contents?: true

Size: 532 Bytes

Versions: 4

Compression:

Stored size: 532 Bytes

Contents

# frozen_string_literal: true

$LOAD_PATH.unshift File.expand_path(__dir__)
$LOAD_PATH.unshift File.expand_path('../lib', __dir__)
require 'simplecov'
SimpleCov.start do
  minimum_coverage(94.59)
end
require 'rspec'
require 'rack/test'
require 'webmock/rspec'
require 'omniauth'
require 'omniauth-bolt'

RSpec.configure do |config|
  config.include WebMock::API
  config.include Rack::Test::Methods
  config.extend  OmniAuth::Test::StrategyMacros, type: :strategy
  config.expect_with :rspec do |c|
    c.syntax = :expect
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
omniauth-bolt-0.3.0 spec/spec_helper.rb
omniauth-bolt-0.2.0 spec/spec_helper.rb
omniauth-bolt-0.1.0 spec/spec_helper.rb
omniauth-bolt-0.0.0 spec/spec_helper.rb