aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/library/net/http/http/inspect_spec.rb
blob: 7c5d9bf0eb5b6a093b94267c62060077e7aa829b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
require File.expand_path('../../../../../spec_helper', __FILE__)
require 'net/http'
require File.expand_path('../fixtures/http_server', __FILE__)

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 == "#<Net::HTTP localhost:#{@port} open=false>"

    @http.start
    @http.inspect.should == "#<Net::HTTP localhost:#{@port} open=true>"
  end
end