summaryrefslogtreecommitdiff
path: root/spec/ruby/library/net/http/http/inspect_spec.rb
blob: b1e799ca345d9976d93d610c9fc0db448f17bb42 (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_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 == "#<Net::HTTP localhost:#{@port} open=false>"

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