Sha256: 6a3d3f2e8d6073ba86cb00341dcf7de7f725b22564fe241c92e9b3053dd9da93

Contents?: true

Size: 433 Bytes

Versions: 16

Compression:

Stored size: 433 Bytes

Contents

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

unless RUBY_PLATFORM =~ /java/
  require 'simplecov'
  require 'coveralls'

  SimpleCov.formatter = Coveralls::SimpleCov::Formatter
  SimpleCov.start do
    add_filter 'spec'
  end
end

require 'httpi'
require 'rspec'

RSpec.configure do |config|
  config.mock_with :mocha
  config.order = 'random'
end

HTTPI.log = false

require 'support/fixture'
require 'support/matchers'

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
httpi-2.4.5 spec/spec_helper.rb
httpi-2.4.4 spec/spec_helper.rb
httpi-2.4.3 spec/spec_helper.rb
httpi-2.4.2 spec/spec_helper.rb
httpi-2.4.1 spec/spec_helper.rb
httpi-2.4.0 spec/spec_helper.rb
httpi-2.3.0 spec/spec_helper.rb
httpi-2.1.1 spec/spec_helper.rb
httpi-2.2.7 spec/spec_helper.rb
httpi-2.2.6 spec/spec_helper.rb
httpi-2.2.5 spec/spec_helper.rb
httpi-2.2.4 spec/spec_helper.rb
httpi-2.2.3 spec/spec_helper.rb
httpi-2.2.1 spec/spec_helper.rb
httpi-2.2.0 spec/spec_helper.rb
httpi-2.1.0 spec/spec_helper.rb