Sha256: 2cb4f9906ed38c6681ad4383865146d62365f500d80444623d2bc3ffbcc77c5a

Contents?: true

Size: 448 Bytes

Versions: 3

Compression:

Stored size: 448 Bytes

Contents

if ENV['CI']
  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.4.1 spec/spec_helper.rb
rakuten_web_service-1.4.0 spec/spec_helper.rb
rakuten_web_service-1.3.0 spec/spec_helper.rb