Sha256: 6133268d8865949dffdef40102b495a28e618f72aeb0aa0723a3e3aba5e21a50
Contents?: true
Size: 678 Bytes
Versions: 2
Compression:
Stored size: 678 Bytes
Contents
$LOAD_PATH.unshift File.expand_path("..", __FILE__) $LOAD_PATH.unshift File.expand_path("../../lib", __FILE__) if RUBY_VERSION >= "1.9" require "simplecov" require "coveralls" SimpleCov.formatters = [SimpleCov::Formatter::HTMLFormatter, Coveralls::SimpleCov::Formatter] SimpleCov.start do minimum_coverage(78.48) end end require "rspec" require "rack/test" require "webmock/rspec" require "omniauth" require "omniauth-mercadopago" RSpec.configure do |config| config.expect_with :rspec do |c| c.syntax = :expect end config.extend OmniAuth::Test::StrategyMacros, :type => :strategy config.include Rack::Test::Methods config.include WebMock::API end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
omniauth-mercadopago-0.1.2 | spec/helper.rb |
omniauth-mercadopago-0.1.1 | spec/helper.rb |