Sha256: f37156c1bb4a0290f1f4bf95f32a218b4b29e87e085f3e5548541e71672724f3

Contents?: true

Size: 475 Bytes

Versions: 143

Compression:

Stored size: 475 Bytes

Contents

require 'rubygems'
require 'rspec'
require 'net/http'
require 'net/https'
require 'stringio'
require 'acceptance/net_http/net_http_shared'
require 'support/webmock_server'

describe "Real Net:HTTP without webmock", :without_webmock => true do
  before(:all) do
    raise "WebMock has no access here!!!" if defined?(WebMock::NetHTTPUtility)
    WebMockServer.instance.start
  end

  after(:all) do
    WebMockServer.instance.stop
  end

  it_should_behave_like "Net::HTTP"
end

Version data entries

143 entries across 141 versions & 11 rubygems

Version Path
webmock-1.7.8 spec/acceptance/net_http/real_net_http_spec.rb
webmock-1.7.7 spec/acceptance/net_http/real_net_http_spec.rb
webmock-1.7.6 spec/acceptance/net_http/real_net_http_spec.rb