Codebase list ruby-omniauth-twitter / b3ba10fa-afb3-413d-bedf-cd96eb723f22/main spec / spec_helper.rb
b3ba10fa-afb3-413d-bedf-cd96eb723f22/main

Tree @b3ba10fa-afb3-413d-bedf-cd96eb723f22/main (Download .tar.gz)

spec_helper.rb @b3ba10fa-afb3-413d-bedf-cd96eb723f22/main

1a3213f
 
 
f3bdd71
 
 
1a3213f
 
 
 
 
 
 
 
 
 
 
 
 
 
$:.unshift File.expand_path('..', __FILE__)
$:.unshift File.expand_path('../../lib', __FILE__)
require 'simplecov'
SimpleCov.start do
  minimum_coverage(94.59)
end
require 'rspec'
require 'rack/test'
require 'webmock/rspec'
require 'omniauth'
require 'omniauth-twitter'

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