mirror of
https://github.com/elyby/omniauth-ely.git
synced 2024-11-08 21:52:25 +05:30
16 lines
401 B
Ruby
16 lines
401 B
Ruby
$:.unshift File.expand_path('..', __FILE__)
|
|
$:.unshift File.expand_path('../../lib', __FILE__)
|
|
require 'simplecov'
|
|
SimpleCov.start
|
|
require 'rspec'
|
|
require 'rack/test'
|
|
require 'webmock/rspec'
|
|
require 'omniauth'
|
|
require 'omniauth-ely'
|
|
|
|
RSpec.configure do |config|
|
|
config.include WebMock::API
|
|
config.include Rack::Test::Methods
|
|
config.extend OmniAuth::Test::StrategyMacros, :type => :strategy
|
|
end
|