Sha256: 35656520432633951f66410b5dd96862fea86edd87781de4d32e5a4e0a9c9528

Contents?: true

Size: 521 Bytes

Versions: 3

Compression:

Stored size: 521 Bytes

Contents

if ENV['CI']
  require 'codeclimate-test-reporter'
  CodeClimate::TestReporter.start

  require 'coveralls'
  Coveralls.wear!
end

require File.expand_path(File.join(__dir__, '..', 'lib', 'rakuten_web_service'))

require 'webmock/rspec'
require 'tapp'

Dir[File.expand_path(File.join(__dir__, "support/**/*.rb"))].each { |f| require f }

RSpec.configure do |c|
  c.mock_with :rspec

  c.before :suite do
    WebMock.disable_net_connect!(:allow => "codeclimate.com")
  end

  c.after :each do
    WebMock.reset!
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rakuten_web_service-1.2.0 spec/spec_helper.rb
rakuten_web_service-1.1.1 spec/spec_helper.rb
rakuten_web_service-1.1.0 spec/spec_helper.rb