Sha256: e84d2984f636dbfca8a4434dd72535c5a97041789ead2ce7aa9e312d55ca1748
Contents?: true
Size: 896 Bytes
Versions: 48
Compression:
Stored size: 896 Bytes
Contents
require File.expand_path('../../../../../spec_helper', __FILE__) require 'net/http' require "stringio" require File.expand_path('../fixtures/http_server', __FILE__) describe "Net::HTTP#set_debug_output when passed io" do before(:all) do NetHTTPSpecs.start_server end after(:all) do NetHTTPSpecs.stop_server end before(:each) do @http = Net::HTTP.new("127.0.0.1", NetHTTPSpecs.server_port) end it "sets the passed io as output stream for debugging" do io = StringIO.new @http.set_debug_output(io) @http.start io.string.should_not be_empty size = io.string.size @http.get("/") io.string.size.should > size end it "outputs a warning when the connection has already been started" do @http.start lambda { @http.set_debug_output(StringIO.new) }.should complain("Net::HTTP#set_debug_output called after HTTP started\n") end end
Version data entries
48 entries across 48 versions & 2 rubygems