Sha256: df9693a4498087e490f8768756f43ca3c9536bc633e9226350ed70708c1564b5

Contents?: true

Size: 819 Bytes

Versions: 3

Compression:

Stored size: 819 Bytes

Contents

require 'net/http'

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

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

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

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

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

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

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rubysl-net-http-1.0.1 spec/httpresponse/error_type_spec.rb
rubysl-net-http-2.0.4 spec/httpresponse/error_type_spec.rb
rubysl-net-http-1.0.0 spec/httpresponse/error_type_spec.rb