Sha256: b1c0ab7c1f6e5985238d080818adbb7743629272c6f513618b6469ebb9de2aed

Contents?: true

Size: 553 Bytes

Versions: 1

Compression:

Stored size: 553 Bytes

Contents

require "bundler"
Bundler.setup(:default, :development)

if ENV["COVERAGE"]
  require "simplecov"
  SimpleCov.start do
    add_filter "/spec/"
  end
end

require "savon"
require "rspec"

# don't have HTTPI lazy-load HTTPClient, because then
# it can't actually be refered to inside the specs.
require "httpclient"

support_files = File.expand_path("spec/support/**/*.rb")
Dir[support_files].each { |file| require file }

RSpec.configure do |config|
  config.include SpecSupport
  config.mock_with :mocha
  config.order = "random"
end

HTTPI.log = false

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
savon-2.2.0 spec/spec_helper.rb