aboutsummaryrefslogtreecommitdiffstats
path: root/spec/rubyspec/library/net/http/httpresponse/code_type_spec.rb
blob: 899c2ed9bf676d3cd9583e0f357e0f79720288c4 (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'

describe "Net::HTTPResponse#code_type" do
  it "returns self's class" do
    res = Net::HTTPUnknownResponse.new("1.0", "???", "test response")
    res.code_type.should == Net::HTTPUnknownResponse

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

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

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

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

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