require_relative '../../../../spec_helper' require 'net/http' require_relative 'fixtures/http_server' describe "Net::HTTP#inspect" do before :each do NetHTTPSpecs.start_server @port = NetHTTPSpecs.port @http = Net::HTTP.new("localhost", @port) end after :each do @http.finish if @http.started? NetHTTPSpecs.stop_server end it "returns a String representation of self" do @http.inspect.should be_kind_of(String) @http.inspect.should == "#" @http.start @http.inspect.should == "#" end end