summaryrefslogtreecommitdiff
path: root/spec/ruby/library/net/http/httpresponse/code_spec.rb
blob: 114277cb431c30270526e52eb44965a68269a865 (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'

describe "Net::HTTPResponse#code" do
  it "returns the result code string" do
    res = Net::HTTPUnknownResponse.new("1.0", "???", "test response")
    res.code.should == "???"

    res = Net::HTTPInformation.new("1.0", "1xx", "test response")
    res.code.should == "1xx"

    res = Net::HTTPSuccess.new("1.0", "2xx", "test response")
    res.code.should == "2xx"

    res = Net::HTTPRedirection.new("1.0", "3xx", "test response")
    res.code.should == "3xx"

    res = Net::HTTPClientError.new("1.0", "4xx", "test response")
    res.code.should == "4xx"

    res = Net::HTTPServerError.new("1.0", "5xx", "test response")
    res.code.should == "5xx"
  end
end